diff --git a/README.md b/README.md index 0d6babe..b1c142a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/assets/api_automation.jpg b/public/api_automation.jpg similarity index 100% rename from src/assets/api_automation.jpg rename to public/api_automation.jpg diff --git a/src/assets/automation_java.jpg b/public/automation_java.jpg similarity index 100% rename from src/assets/automation_java.jpg rename to public/automation_java.jpg diff --git a/src/assets/care.jpg b/public/care.jpg similarity index 100% rename from src/assets/care.jpg rename to public/care.jpg diff --git a/src/assets/portfolio.jpg b/public/portfolio.jpg similarity index 100% rename from src/assets/portfolio.jpg rename to public/portfolio.jpg diff --git a/src/data/projects.tsx b/src/data/projects.tsx index 79c8212..ad36e46 100644 --- a/src/data/projects.tsx +++ b/src/data/projects.tsx @@ -4,7 +4,7 @@ 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", }, { @@ -12,7 +12,7 @@ export const projects = [ 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", }, { @@ -20,7 +20,7 @@ export const projects = [ 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", }, { @@ -28,7 +28,7 @@ export const projects = [ 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", }, ];