diff --git a/Images/readme-img.png b/Images/readme-img.png deleted file mode 100644 index 3d0ad5826d..0000000000 Binary files a/Images/readme-img.png and /dev/null differ diff --git a/Images/readme-img1.png b/Images/readme-img1.png deleted file mode 100644 index bc1405d147..0000000000 Binary files a/Images/readme-img1.png and /dev/null differ diff --git a/README.md b/README.md index 0200765861..bb3337d25e 100644 --- a/README.md +++ b/README.md @@ -1,54 +1,3 @@ -

- Portfolio Website - v2.0
- soumyajit.tech -

-
- Demo -
- -
- -
- -[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)   -[![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg)](https://forthebadge.com)   -[![forthebadge](https://forthebadge.com/images/badges/open-source.svg)](https://forthebadge.com)   -![GitHub Repo stars](https://img.shields.io/github/stars/soumyajit4419/Portfolio?color=red&logo=github&style=for-the-badge)   -![GitHub forks](https://img.shields.io/github/forks/soumyajit4419/Portfolio?color=red&logo=github&style=for-the-badge) - -
- -

- πŸ”Ή - Report Bug     - πŸ”Ή - Request Feature -

- -## TL;DR - -You can fork this repo to modify and make changes of your own. Please give me proper credit by linking back to [Soumyajit4419](https://github.com/soumyajit4419/Portfolio). Thanks! - -## Built With - -My personal portfolio soumyajit.tech which features some of my github projects as well as my resume and technical skills.
- -This project was built using these technologies. - -- React.js -- Node.js -- Express.js -- CSS3 -- VsCode -- Vercel - -## Features - -**πŸ“– Multi-Page Layout** - -**🎨 Styled with React-Bootstrap and Css with easy to customize colors** - -**πŸ“± Fully Responsive** ## Getting Started @@ -63,14 +12,3 @@ Clone down this repository. You will need `node.js` and `git` installed globally Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits. - -## Usage Instructions - -Open the project folder and Navigate to `/src/components/`.
-You will find all the components used and you can edit your information accordingly. - -### Show your support - -Give a ⭐ if you like this website! - -Buy Me A Coffee diff --git a/package-lock.json b/package-lock.json index 3fb122f4a3..d2c62d7c77 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,6 +18,7 @@ "react-bootstrap": "^2.2.1", "react-dom": "^17.0.2", "react-github-calendar": "^3.2.2", + "react-hook-form": "^7.51.0", "react-icons": "^4.8.0", "react-parallax-tilt": "^1.7.42", "react-pdf": "^5.7.1", @@ -12274,6 +12275,21 @@ "react-tooltip": "^4.2.0" } }, + "node_modules/react-hook-form": { + "version": "7.51.0", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.0.tgz", + "integrity": "sha512-BggOy5j58RdhdMzzRUHGOYhSz1oeylFAv6jUSG86OvCIvlAvS7KvnRY7yoAf2pfEiPN7BesnR0xx73nEk3qIiw==", + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18" + } + }, "node_modules/react-icons": { "version": "4.8.0", "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", @@ -24087,6 +24103,12 @@ "react-activity-calendar": "^1.4.4" } }, + "react-hook-form": { + "version": "7.51.0", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.0.tgz", + "integrity": "sha512-BggOy5j58RdhdMzzRUHGOYhSz1oeylFAv6jUSG86OvCIvlAvS7KvnRY7yoAf2pfEiPN7BesnR0xx73nEk3qIiw==", + "requires": {} + }, "react-icons": { "version": "4.8.0", "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", diff --git a/package.json b/package.json index 5e4b94e633..b7810ff25f 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "react-bootstrap": "^2.2.1", "react-dom": "^17.0.2", "react-github-calendar": "^3.2.2", + "react-hook-form": "^7.51.0", "react-icons": "^4.8.0", "react-parallax-tilt": "^1.7.42", "react-pdf": "^5.7.1", diff --git a/public/index.html b/public/index.html index 9a1d8bdd82..0b9d4fa3b9 100644 --- a/public/index.html +++ b/public/index.html @@ -8,29 +8,8 @@ - S0umyajit | Portfolio + Yoshihiro Yamada| Portfolio - - - - - - - - - - - - - - - - - - diff --git a/src/App.css b/src/App.css index 74b5e05345..e08f0c7f7e 100644 --- a/src/App.css +++ b/src/App.css @@ -36,3 +36,7 @@ transform: rotate(360deg); } } + +.icon-text{ + font-size: 15px; +} \ No newline at end of file diff --git a/src/App.js b/src/App.js index f080c888b1..0dd9cfd751 100644 --- a/src/App.js +++ b/src/App.js @@ -6,6 +6,8 @@ import About from "./components/About/About"; import Projects from "./components/Projects/Projects"; import Footer from "./components/Footer"; import Resume from "./components/Resume/ResumeNew"; +import Contact from "./components/Contact/Contact"; + import { BrowserRouter as Router, Route, @@ -39,6 +41,7 @@ function App() { } /> } /> } /> + } /> } />