Skip to content

Commit

Permalink
Merge pull request #8 from meeIbrahim/dev
Browse files Browse the repository at this point in the history
Added Public Folder and changed project img path to public
  • Loading branch information
meeIbrahim authored Apr 21, 2024
2 parents 8b9f7f2 + 611a883 commit 5ca9f3e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 33 deletions.
31 changes: 2 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
# React + TypeScript + Vite
# Portfolio using Vite + React + Tailwind

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh

## Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

- Configure the top-level `parserOptions` property like this:

```js
export default {
// other rules...
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
}
```

- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
This is a portfolio website using Vite to build static pages that can be then deployed via github actions
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions src/data/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@ export const projects = [
subtitle: "Selenium Grid inside K8 Cluster",
description:
"A robust test automation cloud infra that provides parallel cross browser testing capabilities with enhanced scalibility while remaining cost effective and modular",
image: "src/assets/care.jpg",
image: "/care.jpg",
link: "https://reedbarger.com",
},
{
title: "Automation with Intelligent State Management",
subtitle: "Java and Selenium",
description:
"Custom Automation Framework using Selenium with Java that provides a smart mechanism to fulfill prerequisites and dynamically set up the application for each test case",
image: "src/assets/automation_java.jpg",
image: "/automation_java.jpg",
link: "https://jsbootcamp.com",
},
{
title: "API Framework for Automation",
subtitle: "Java with Apache Http5",
description:
"Custom API Automation Framework written with Apache HttpClient 5 that allows for API testing and functional testing using APIs via the Page Object Model, integrating into the UI Automation Framework",
image: "src/assets/api_automation.jpg",
image: "/api_automation.jpg",
link: "https://pythonbootcamp.com",
},
{
title: "This Website!",
subtitle: "React with Tailwind",
description:
"A fun project to showcase my skills and accomplishments, while also documenting my journey of growth and knowledge!",
image: "src/assets/portfolio.jpg",
image: "/portfolio.jpg",
link: "https://reactbootcamp.com",
},
];

0 comments on commit 5ca9f3e

Please sign in to comment.