-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from Zemerik/main
Portfolio Addition: Hemang Yadav
- Loading branch information
Showing
100 changed files
with
3,911 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## PORTFOLIO V2 - [Website](https://zemerik.vercel.app) | ||
|
||
## ABOUT: | ||
|
||
This the second and latest version of my Portfolio created using HTML, CSS, Javascript, Typescript, React and Tailwind. | ||
|
||
## USAGE: | ||
|
||
- Feel Free to use my portfolio as a template for yours, however the **distribution of images and information is not allowed in any form.** | ||
- Proper Credit must be given in either your website or your website's README.md | ||
|
||
### CLONING: | ||
|
||
- Use GIT to store the files of this Repository on your machine: | ||
|
||
``` | ||
git clone https://github.com/Zemerik/Portfolio-v2 | ||
``` | ||
|
||
### CUSTOMIZING: | ||
|
||
- The Favicon and title of the website can be changed in the [index.html](https://github.com/Zemerik/Portfolio-v2/blob/main/index.html) file, while the rest of the information can be changed in the [main.js](https://github.com/Zemerik/Portfolio-v2/blob/main/src/main.js) file. | ||
|
||
#### Thanks for visiting. Don't forget to leave a ⭐ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="src/assets/img/Zemerik.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="Hemang Yadav (Zemerik)'s Portfolio" | ||
/> | ||
<title>Hemang Yadav (Zemerik)</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import "./App.css"; | ||
import { BrowserRouter, Routes, Route } from "react-router-dom"; | ||
import Home from "./pages/Home"; | ||
import ActiveSectionContextProvider from "./context/active-section-context"; | ||
import ThemeContextProvider from "./context/theme-context"; | ||
import LanguageContextProvider from "./context/language-context"; | ||
|
||
function App() { | ||
return ( | ||
<> | ||
<BrowserRouter> | ||
<ThemeContextProvider> | ||
<LanguageContextProvider> | ||
<ActiveSectionContextProvider> | ||
<Routes> | ||
<Route path="/" element={<Home />}></Route> | ||
<Route path="/imprint" element={<Home />}></Route> | ||
<Route path="/privacy" element={<Home />}></Route> | ||
</Routes> | ||
</ActiveSectionContextProvider> | ||
</LanguageContextProvider> | ||
</ThemeContextProvider> | ||
</BrowserRouter> | ||
</> | ||
); | ||
} | ||
|
||
export default App; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.