Skip to content

Commit

Permalink
Merge pull request #272 from Zemerik/main
Browse files Browse the repository at this point in the history
Portfolio Addition: Hemang Yadav
  • Loading branch information
avinash201199 authored May 18, 2024
2 parents 6a7dad5 + 924e21d commit 6318870
Show file tree
Hide file tree
Showing 100 changed files with 3,911 additions and 0 deletions.
24 changes: 24 additions & 0 deletions HEMANG YADAV/README.md
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 ⭐
17 changes: 17 additions & 0 deletions HEMANG YADAV/index.html
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 added HEMANG YADAV/src/App.css
Empty file.
28 changes: 28 additions & 0 deletions HEMANG YADAV/src/App.tsx
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 added HEMANG YADAV/src/assets/fonts/font1.woff2
Binary file not shown.
Binary file added HEMANG YADAV/src/assets/fonts/font2.woff2
Binary file not shown.
Binary file added HEMANG YADAV/src/assets/fonts/font3.woff2
Binary file not shown.
Binary file added HEMANG YADAV/src/assets/fonts/font4.woff2
Binary file not shown.
Binary file added HEMANG YADAV/src/assets/icons/aboutmeicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions HEMANG YADAV/src/assets/icons/adobexdicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions HEMANG YADAV/src/assets/icons/apiicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/asciiiicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions HEMANG YADAV/src/assets/icons/axiosicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/blogsicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions HEMANG YADAV/src/assets/icons/boostrapicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/c++icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions HEMANG YADAV/src/assets/icons/canvaicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions HEMANG YADAV/src/assets/icons/car-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/cdp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions HEMANG YADAV/src/assets/icons/cssicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/discordapiicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/discordjsicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HEMANG YADAV/src/assets/icons/expressicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6318870

Please sign in to comment.