├── .prettierignore ├── bun.lockb ├── .gitattributes ├── docs ├── public │ ├── header.png │ └── logo.svg ├── .vitepress │ ├── theme │ │ ├── index.js │ │ └── custom.css │ └── config.js ├── index.md ├── contributors.md ├── guide.md └── portfolio.md ├── renovate.json ├── .husky └── pre-commit ├── .github ├── Pull_request_template.md ├── workflows │ ├── appreciation.yml │ └── autodeploy.yml ├── ISSUE_TEMPLATE │ └── feature.md └── stale.yml ├── extract.sh ├── LICENSE ├── package.json ├── .all-contributorsrc ├── .gitignore ├── CONTRIBUTING.md └── CODE_OF_CONDUCT.md /.prettierignore: -------------------------------------------------------------------------------- 1 | .vitepress/ 2 | *.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/said7388/portfolio-ideas/HEAD/bun.lockb -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-detectable=true 2 | *.md linguist-documentation=false 3 | -------------------------------------------------------------------------------- /docs/public/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/said7388/portfolio-ideas/HEAD/docs/public/header.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": ["config:base"] 4 | } 5 | -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- 1 | import DefaultTheme from "vitepress/theme"; 2 | import "./custom.css"; 3 | 4 | export default DefaultTheme; 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm test 5 | npx lint-staged 6 | # npx prettier --write --ignore-path .gitignore . && git add . 7 | -------------------------------------------------------------------------------- /.github/Pull_request_template.md: -------------------------------------------------------------------------------- 1 | ### Portfolio Author 2 | 3 | 4 | 5 | ### Portfolio Link? 6 | 7 | 8 | 9 | ### GitHub Link: 10 | 11 | 12 | 13 | ### Tech Stack 14 | 15 | 16 | -------------------------------------------------------------------------------- /extract.sh: -------------------------------------------------------------------------------- 1 | # Input and output files 2 | input_file="README.md" 3 | output_file="./docs/portfolio.md" 4 | 5 | # Clear the output file 6 | > "$output_file" 7 | 8 | # set vitepress layout 9 | echo --- >> "$output_file" 10 | echo layout: home >> "$output_file" 11 | echo --- >> "$output_file" 12 | echo "" >> "$output_file" 13 | 14 | # Copy portfolio table 15 | grep -P '^\|.*\|$' "$input_file" >> "$output_file" -------------------------------------------------------------------------------- /.github/workflows/appreciation.yml: -------------------------------------------------------------------------------- 1 | name: "Welcome New Contributors" 2 | 3 | on: 4 | issues: 5 | types: [opened] 6 | pull_request_target: 7 | types: [opened] 8 | 9 | jobs: 10 | welcome-new-contributor: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: "Greet the contributor" 14 | uses: garg3133/welcome-new-contributors@v1.2 15 | with: 16 | token: ${{ secrets.GITHUB_TOKEN }} 17 | issue-message: "Hello @contributor_name, 😇 thanks for raising an issue in this project." 18 | pr-message: "Hello @contributor_name, 🔥 thanks for raising a pull request in this project. Now, sit back and drink some coffee while we review this." 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature 3 | about: Suggest an idea for this project 4 | title: "[FEAT] - Feature Info" 5 | labels: enhancement 6 | assignees: Evavic44 7 | --- 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 50 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | # Label to use when marking an issue as stale 9 | staleLabel: wontfix 10 | # Comment to post when marking an issue as stale. Set to `false` to disable 11 | markComment: > 12 | This issue has been automatically marked as stale because it has not had 13 | recent activity. It will be closed if no further activity occurs. Thank you 14 | for your contributions. 15 | # Comment to post when closing a stale issue. Set to `false` to disable 16 | closeComment: false 17 | -------------------------------------------------------------------------------- /docs/.vitepress/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | title: "Portfolio Ideas", 3 | description: "A curation of awesome portfolio to draw inspiration", 4 | 5 | themeConfig: { 6 | logo: "/logo.svg", 7 | siteTitle: "Portfolio Ideas", 8 | nav: [ 9 | { text: "Portfolios", link: "/portfolio" }, 10 | { text: "Guide", link: "/guide" }, 11 | { text: "Contributors", link: "/contributors" }, 12 | ], 13 | socialLinks: [{ icon: "github", link: "https://github.com/evavic44" }], 14 | footer: { 15 | message: "Released under the MIT License.", 16 | copyright: "Copyright © 2022-present Victor Eke | Portfolio Ideas", 17 | }, 18 | markdown: { 19 | theme: "material-palenight", 20 | lineNumbers: true, 21 | }, 22 | }, 23 | }; 24 | -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Victor Eke 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/workflows/autodeploy.yml: -------------------------------------------------------------------------------- 1 | name: Autodeploy 2 | run-name: Run the deploy command 3 | on: 4 | push: 5 | branches: [main] 6 | 7 | jobs: 8 | deployment: 9 | runs-on: ubuntu-latest 10 | permissions: 11 | contents: write 12 | steps: 13 | - name: Checkout 14 | uses: actions/checkout@v4 15 | with: 16 | token: ${{ secrets.GITHUB_TOKEN }} 17 | - name: Make script file executable 18 | run: chmod +x extract.sh 19 | - name: Run the script 20 | run: ./extract.sh 21 | - name: Setup Node 22 | uses: actions/setup-node@v3 23 | with: 24 | node-version: "20" 25 | - name: Install dependencies 26 | run: npm install 27 | - name: Format code 28 | run: npm run format 29 | - name: Configure Git 30 | run: | 31 | git config --global user.name "${{ github.actor }}" 32 | git config --global user.email "${{ github.actor }}@users.noreply.github.com" 33 | - name: Commit and push changes 34 | run: | 35 | git add . 36 | git commit -m "docs: deploy site" 37 | git push 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio-ideas", 3 | "version": "0.0.1", 4 | "description": "A curation of awesome portfolio website ideas for developers and designers to draw inspiration from. Raise a pull request to add more. 💜", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"no test available\"", 8 | "format": "prettier --write .", 9 | "docs:dev": "vitepress dev docs", 10 | "docs:build": "vitepress build docs", 11 | "docs:serve": "vitepress serve docs", 12 | "deploy": "./extract.sh", 13 | "prepare": "husky install" 14 | }, 15 | "lint-staged": { 16 | "**/*.{md,ts,js,tsx,jsx}": [ 17 | "npx prettier --write" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "git+https://github.com/Evavic44/portfolio-ideas.git" 23 | }, 24 | "keywords": [ 25 | "portfolio", 26 | "portfolio-ideas", 27 | "resume", 28 | "developer", 29 | "ideas", 30 | "inspiration", 31 | "designers" 32 | ], 33 | "author": "Victor Eke", 34 | "license": "MIT", 35 | "bugs": { 36 | "url": "https://github.com/Evavic44/portfolio-ideas/issues" 37 | }, 38 | "homepage": "https://github.com/Evavic44/portfolio-ideas#readme", 39 | "devDependencies": { 40 | "husky": "^8.0.1", 41 | "lint-staged": "^13.0.3", 42 | "prettier": "^2.7.1" 43 | }, 44 | "dependencies": { 45 | "vitepress": "^1.0.0-alpha.29", 46 | "vue": "^3.2.45" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Space+Mono:regular,italic,700,700italic); 2 | @import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900); 3 | 4 | :root { 5 | --vp-c-brand: #a752fc; 6 | --vp-c-brand-light: #a040ff; 7 | --vp-c-brand-lighter: rgba(162, 23, 255, 0.25); 8 | --vp-c-brand-dark: #8612fa; 9 | --vp-c-brand-darker: #7b0fe7; 10 | --secondary: #dddddd; 11 | --tertiary: #fafafa; 12 | --vp-c-sponsor: #fd1d7c; 13 | 14 | --vp-font-family-base: "Inter", "Inter var experimental", "Inter var", 15 | -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, 16 | Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 17 | --vp-font-family-mono: "Space Mono", Menlo, Monaco, Consolas, "Courier New", 18 | monospace; 19 | 20 | --vp-nav-height: var(--vp-nav-height-mobile); 21 | --vp-nav-height-mobile: 56px; 22 | --vp-nav-height-desktop: 82px; 23 | --vp-sidebar-width: 250px; 24 | } 25 | 26 | .dark { 27 | --secondary: #333333; 28 | --tertiary: #222222; 29 | } 30 | 31 | table { 32 | max-width: 80%; 33 | margin: 2.5rem auto 0; 34 | border: 1px solid var(--secondary); 35 | width: 100%; 36 | overflow-x: auto; 37 | } 38 | 39 | table thead tr { 40 | font-size: 1rem; 41 | border: 1px solid var(--secondary); 42 | background-color: var(--tertiary); 43 | } 44 | 45 | table tbody tr td { 46 | border: 1px solid var(--secondary); 47 | padding: 1rem; 48 | text-align: center; 49 | } 50 | 51 | table * a { 52 | text-decoration: underline; 53 | } 54 | 55 | table * a:hover { 56 | color: var(--vp-c-brand); 57 | } 58 | 59 | @media (min-width: 960px) { 60 | :root { 61 | --vp-nav-height: var(--vp-nav-height-desktop); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | 4 | # Hero section 5 | hero: 6 | name: Portfolio Ideas 7 | text: Repository of portfolio Inspiration 8 | image: 9 | src: /header.png 10 | alt: Portfolio-ideas logo 11 | tagline: A curation of awesome portfolio website ideas for developers and designers to draw inspiration from. 12 | actions: 13 | - theme: brand 14 | text: See Portfolios 15 | link: /portfolio 16 | - theme: alt 17 | text: View on GitHub 18 | link: https://github.com/Evavic44/portfolio-ideas 19 | 20 | # Features section 21 | features: 22 | - icon: 💜 23 | title: The Best Resource 24 | details: Over 130+ inspiration in a single repository 25 | - icon: ⚛️ 26 | title: Technologies Used 27 | details: Discover the technologies used for each portfolio. 28 | - icon: 📷 29 | title: Portfolio Screenshot 30 | details: Know what each portfolio looks like without visiting it 31 | - icon: 🥑 32 | title: Source Code 33 | details: Portfolio source code available. 34 | 35 | # Meta property 36 | head: 37 | - - meta 38 | - property: og:type 39 | content: website 40 | - - meta 41 | - property: og:title 42 | content: Portfolio-ideas 43 | - - meta 44 | - property: og:image 45 | content: https://user-images.githubusercontent.com/62628408/203779311-949cf214-92a7-4900-b997-55595fd12316.png 46 | - - meta 47 | - property: og:url 48 | content: https://portfolio-ideas.vercel.app 49 | - - meta 50 | - name: title 51 | content: Portfolio-ideas 52 | - - meta 53 | - name: twitter:card 54 | content: https://user-images.githubusercontent.com/62628408/203779311-949cf214-92a7-4900-b997-55595fd12316.png 55 | - - link 56 | - rel: icon 57 | type: image/svg 58 | href: logo.svg 59 | --- 60 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "Evavic44", 10 | "name": "Victor Eke ", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/62628408?v=4", 12 | "profile": "http://victoreke.com", 13 | "contributions": [ 14 | "maintenance", 15 | "code", 16 | "doc", 17 | "bug" 18 | ] 19 | }, 20 | { 21 | "login": "israelmitolu", 22 | "name": "Israel Mitolu", 23 | "avatar_url": "https://avatars.githubusercontent.com/u/53873209?v=4", 24 | "profile": "https://israelmitolu.netlify.app", 25 | "contributions": [ 26 | "code", 27 | "doc" 28 | ] 29 | }, 30 | { 31 | "login": "piyush-multiplexer", 32 | "name": "Piyush Goyani", 33 | "avatar_url": "https://avatars.githubusercontent.com/u/18528418?v=4", 34 | "profile": "https://piyushgoyani.thesourcepedia.org", 35 | "contributions": [ 36 | "code", 37 | "doc" 38 | ] 39 | }, 40 | { 41 | "login": "frankiefab100", 42 | "name": "Franklin Ohaegbulam", 43 | "avatar_url": "https://avatars.githubusercontent.com/u/46662771?v=4", 44 | "profile": "http://frankiefab.com", 45 | "contributions": [ 46 | "code", 47 | "doc" 48 | ] 49 | }, 50 | { 51 | "login": "vimode", 52 | "name": "vimode", 53 | "avatar_url": "https://avatars.githubusercontent.com/u/39148877?v=4", 54 | "profile": "https://github.com/vimode", 55 | "contributions": [ 56 | "code", 57 | "doc" 58 | ] 59 | } 60 | ], 61 | "contributorsPerLine": 7, 62 | "projectName": "portfolio-ideas", 63 | "projectOwner": "Evavic44", 64 | "repoType": "github", 65 | "repoHost": "https://github.com", 66 | "skipCi": true, 67 | "commitConvention": "angular" 68 | } 69 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | .vitepress 94 | 95 | # Serverless directories 96 | .serverless/ 97 | 98 | # FuseBox cache 99 | .fusebox/ 100 | 101 | # DynamoDB Local files 102 | .dynamodb/ 103 | 104 | # TernJS port file 105 | .tern-port 106 | -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- 1 |
2 |

Contributors

3 | Thanks goes to these wonderful people for contributing to this project 4 |
5 |
6 | 7 | 25 | 26 |
27 |
28 | 29 | Victor Eke 30 | Victor Eke 31 | 32 |
33 | 🚧 34 | 💻 35 | 📖 36 | 🐛 37 |
38 |
39 | 40 | Israel Mitolu 41 | Israel Mitolu 42 | 43 |
44 | 💻 45 | 📖 46 |
47 |
48 | 49 | Piyush Goyani 50 | Piyush Goyani 51 | 52 |
53 | 💻 54 | 📖 55 |
56 |
57 | 58 | Franklin Ohaegbulam 59 | Franklin Ohaegbulam 60 | 61 |
62 | 💻 63 | 📖 64 |
65 |
66 | 67 | vimode 68 | vimode 69 | 70 |
71 | 💻 72 | 📖 73 |
74 |
75 | 76 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 77 | -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- 1 |
2 |

Contribution Guidelines

3 | This documentation contains a set of guidelines to help you during the contribution process of this project. 4 |
5 |
6 | 7 | ## Step 1. Fork the repository 8 | 9 | Visit the [repository](https://github.com/evavic44/portfolio-ideas) on Github and scroll to the readme section, you'll see a pencil icon on the right, click it to fork the project. This will create a copy in your account. 10 | 11 | ![fork-project](https://user-images.githubusercontent.com/62628408/164759147-84c9baa0-503e-4163-a352-6132de3b916c.png) 12 | 13 | ## Step 2. Create a new table 14 | 15 | The portfolio examples are enclosed between two comments: 16 | 17 | - `` 18 | - `` 19 | 20 | ![portfolio-comments.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650538444320/u2D5Yjfpv.png) 21 | 22 | To add a portfolio, you can either create a new table or copy an already existing table at the bottom of the list and edit it, your choice. 23 | 24 | > **Warning** 25 | > 26 | > DISCLAIMER: ⚠️Portfolios should be added at bottom of the list. 27 | 28 | ## Step 3. Add Portfolio Details 29 | 30 | In the new table, start each column with a `|` symbol followed by the column content: 31 | 32 | ### ⚡ Author Name 33 | 34 | Start a new line below the latest portfolio and add the author or creator of the portfolio website, like so: `| Jemima Abu` 35 | 36 | ![author-name.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650538578159/kX0S0PKsB.png) 37 | 38 | ### ⚡Screenshot 39 | 40 | Take a screenshot of the homepage of the portfolio website, drag it and drop it into the screenshot column. Please before adding the screenshot, use services like [tinypng.com](https://tinypng.com) or [compressor.io](https://compressor.io) to optimize the image sizes. 41 | 42 | 43 | 44 | ### ⚡Live URL 45 | 46 | Add the live link to the portfolio website. PS: Omit the `https://` protocol on the link text. 47 | Example: 48 | 49 | ``` 50 | [victoreke.com](https://victoreke.com) 51 | ``` 52 | 53 | 54 | 55 | ### ⚡Repo 56 | 57 | If the portfolio is available on GitHub, post the repository link, if not, just write **"None"** 58 | 59 | `[GitHub](https://github.com/jemimaabu/portfolio)` 60 | 61 | ![repository.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650498457473/89BPbVRg0.png) 62 | 63 | ### ⚡Tech Stack 64 | 65 | The next and final thing to add is the tech stack of the portfolio website. You can use [wappalyzer](https://wappalyzer.com), or any other service to detect the stack. 66 | 67 | E.g `HTML, CSS, JavaScript` 68 | 69 | ## Step 4. Preview and create a PR 70 | 71 | Now we are done adding all the portfolio information, preview the portfolio added and make sure it corresponds with the table, then raise a pull request. 72 | 73 | ## Need more help? 🤔 74 | 75 | If you need any adittional guide or help with any issues, feel free to contact me on [twitter](https://twitter.com/victorekea) and I'll answer ASAP. That's a promise 🤝🏽😊 76 | 77 | ## Sponsor 78 | 79 | Wanna buy me a coffee, I'll sincerely appreciate it. Here's the link below. 80 | 81 | 82 | bmc-button 83 | 84 | 85 |
86 | I hope you have a lot of fun while contributing to this project, if you drew inspiration from any portfolio on this repo, consider starring this project or sending the creator a thank you message. I sincerely hope you build an amazing portfolio website that will blow the recruiter or visitor's mind. Goodluck. ⚡ 87 | 88 |
89 | portfolio ideas comic 90 | 91 | # Contributing 92 | 93 | We love pull requests from everyone. By participating in this project, you 94 | agree to abide by the [Code Of Conduct](https://github.com/Evavic44/portfolio-ideas/blob/main/CODE_OF_CONDUCT.md). 95 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 |
2 |

Contribution Guidelines

3 | This documentation contains a set of guidelines to help you during the contribution process of this project. 4 |
5 |
6 | 7 | ## Step 1. Fork this repository 8 | 9 | Visit the [repository](https://github.com/evavic44/portfolio-ideas) on Github and scroll to the readme section, you'll see a pencil icon on the right, click it to fork the project. This will create a copy in your account. 10 | 11 | ![fork-project](https://user-images.githubusercontent.com/62628408/164759147-84c9baa0-503e-4163-a352-6132de3b916c.png) 12 | 13 | ## Step 2. Create a new table 14 | 15 | The portfolio examples are enclosed between two comments: 16 | 17 | - `` 18 | - `` 19 | 20 | ![portfolio-comments.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650538444320/u2D5Yjfpv.png) 21 | 22 | To add a portfolio, you can either create a new table or copy an already existing table at the bottom of the list and edit it, your choice. 23 | 24 | > **Warning** 25 | > 26 | > DISCLAIMER: ⚠️Portfolios should be added at bottom of the list. 27 | 28 | ## Step 3. Add Portfolio Details 29 | 30 | In the new table, start each column with a `|` symbol followed by the column content: 31 | 32 | ### ⚡ Author Name 33 | 34 | Start a new line below the latest portfolio and add the author or creator of the portfolio website, like so: `| Jemima Abu` 35 | 36 | ![author-name.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650538578159/kX0S0PKsB.png) 37 | 38 | ### ⚡Screenshot 39 | 40 | Take a screenshot of the homepage of the portfolio website, drag it and drop it into the screenshot column. Please before adding the screenshot, use services like [tinypng.com](https://tinypng.com) or [compressor.io](https://compressor.io) to optimize the image sizes. 41 | 42 | 43 | 44 | ### ⚡Live URL 45 | 46 | Add the live link to the portfolio website. PS: Omit the `https://` protocol on the link text. 47 | Example: 48 | 49 | ``` 50 | [victoreke.com](https://victoreke.com) 51 | ``` 52 | 53 | 54 | 55 | ### ⚡Repo 56 | 57 | If the portfolio is available on GitHub, post the repository link, if not, just write **"None"** 58 | 59 | `[GitHub](https://github.com/jemimaabu/portfolio)` 60 | 61 | ![repository.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1650498457473/89BPbVRg0.png) 62 | 63 | ### ⚡Tech Stack 64 | 65 | The next and final thing to add is the tech stack of the portfolio website. You can use [wappalyzer](https://wappalyzer.com), or any other service to detect the stack. 66 | 67 | E.g `HTML, CSS, JavaScript` 68 | 69 | ## Step 4. Preview and create a PR 70 | 71 | Now we are done adding all the portfolio information, preview the portfolio added and make sure it corresponds with the table, then raise a pull request. 72 | 73 | ## Need more help? 🤔 74 | 75 | If you need any adittional guide or help with any issues, feel free to contact me on [twitter](https://twitter.com/victorekea) and I'll answer ASAP. That's a promise 🤝🏽😊 76 | 77 | ## Sponsor 78 | 79 | Wanna buy me a coffee, I'll sincerely appreciate it. Here's the link below. 80 | 81 | 82 | bmc-button 83 | 84 | 85 |
86 | I hope you have a lot of fun while contributing to this project, if you drew inspiration from any portfolio on this repo, consider starring this project or sending the creator a thank you message. I sincerely hope you build an amazing portfolio website that will blow the recruiter or visitor's mind. Goodluck. ⚡ 87 | 88 |
89 | portfolio ideas comic 90 | 91 | # Contributing 92 | 93 | We love pull requests from everyone. By participating in this project, you 94 | agree to abide by the [Code Of Conduct](https://github.com/Evavic44/portfolio-ideas/blob/main/CODE_OF_CONDUCT.md). 95 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | . 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /docs/portfolio.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- 4 | 5 | | Author | Screenshot | Live URL | Repo | Tech Stack | 6 | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | 7 | | Victor Eke | ![victoreke.com](https://github.com/Evavic44/portfolio-ideas/assets/62628408/618b6f06-1f3b-41e3-861f-6463ae5f0f81) | [victoreke.com](https://victoreke.com) | [GitHub](https://github.com/evavic44/victoreke.com) | Nextjs, Sanity, Tailwind CSS, TypeScript, Umami, Vercel | 8 | | Kent C. Dodds | ![kent-c-doddds](https://user-images.githubusercontent.com/62628408/169700953-63aaedb6-4784-4f42-a356-84d6506f8bf3.png) | [kentcdodds.com](https://kentcdodds.com) | [GitHub](https://github.com/kentcdodds/kentcdodds.com) | React, TypeScript, Remix, Prisma, Redis, Postgres, CSS | 9 | | Brittany Chiang | ![britanny-chiang](https://user-images.githubusercontent.com/62628408/163446015-fc50d2c1-3cee-42fb-b80a-b692ad7eef1e.png) | [v4.brittanychiang.com](https://v4.brittanychiang.com/) | [GitHub](https://github.com/bchiang7/v4) | React, Gatsby, Styled-components | 10 | | Braydon Coyer | ![braydon-coyer](https://user-images.githubusercontent.com/62628408/163818384-cebba9c4-e0ac-4172-bced-7011837bb292.png) | [braydoncoyer.dev](https://braydoncoyer.dev/) | [GitHub](https://github.com/braydoncoyer/braydoncoyer.dev) | React, TypeScript, NextJS, Tailwindcss, Notion API, Supabase | 11 | | Tania Rascia | ![tania-rascia](https://user-images.githubusercontent.com/62628408/163881127-a67615f6-2157-4478-a4b5-46b067a4bb9f.png) | [taniarascia.com](https://taniarascia.com) | [GitHub](https://github.com/taniarascia/taniarascia.com) | React, Gatsby, CSS, Netlify, NodeJS | 12 | | Jemima Abu | ![jemima-abu](https://user-images.githubusercontent.com/62628408/164337756-03930aad-4702-4926-ba58-c388c06de187.png) | [jemimaabu.com](https://jemimaabu.com) | [GitHub](https://github.com/jemimaabu/portfolio) | HTML, CSS, JavaScript. | 13 | | Rekhchand Sahu | ![rekhchand](https://user-images.githubusercontent.com/62628408/164760564-3c749e0f-122c-40cb-9b28-112410227874.png) | [rekhchandsahu.com](https://rekhchandsahu.com) | None | React, Gatsby, Preact, GSAP | 14 | | Olaolu Olawuyi | ![olaolu](https://user-images.githubusercontent.com/62628408/171729441-dee07db1-0c6e-4222-b5ab-9e9b0b4bd735.png) | [olaolu.dev](https://olaolu.dev) | [GitHub](https://github.com/whizkydee/olaolu.dev) | VueJS, JavaScript, HTML, styled-components, Sass | 15 | | Thang Huu Vu | ![thang](https://user-images.githubusercontent.com/62628408/164990543-ab28fa6b-1c39-4306-bd90-565470dd896b.png) | [thvu.dev](https://www.thvu.dev/) | [GitHub](https://github.com/ThangHuuVu/thvu-blog) | React, NextJS, NodeJS, TypeScript, GraphQL, Tailwindcss | 16 | | George Francis | ![george](https://user-images.githubusercontent.com/62628408/169704464-ed5ccfbd-f10b-47fa-820f-389466a4f4cf.png) | [georgefrancis.dev](https://georgefrancis.dev) | None | GSAP, Netlify, HTML, CSS, JavaScript | 17 | | Aditya Vikram | ![aditya](https://user-images.githubusercontent.com/62628408/164990973-ddb830bf-c3d3-4ed6-982a-9f137ff01b07.png) | [people.umass.edu/avsingh](https://people.umass.edu/avsingh) | [GitHub](https://github.com/AVS1508/My-Alternate-Portfolio-Website) | HTML, CSS, JavaScript | 18 | | Adeola Adeoti | ![adeola](https://user-images.githubusercontent.com/62628408/165801986-100e5b52-e8b6-4346-ad83-34c4b5411d94.png) | [adeolaadeoti.site](https://www.adeolaadeoti.site) | [GitHub](https://github.com/adeolaadeoti/adeolaadeoti-v2) | TypeScript, GSAP, NodeJS, NextJS, SCSS | 19 | | Dejan Markovic | ![dejan](https://user-images.githubusercontent.com/62628408/165805667-b0946e79-8ac2-44a1-aaca-f31090ea97e6.png) | [dejan.works](https://www.dejan.works) | None | HTML, CSS, JavaScript, Jquery | 20 | | Max Böck | ![max](https://user-images.githubusercontent.com/62628408/166805924-1a843d07-59b4-408f-bb38-cfc04dd8ab87.png) | [mxb.dev](https://mxb.dev) | [GitHub](https://github.com/maxboeck/mxb) | Eleventy, SCSS, Nunjucks | 21 | | David Darnes | ![david](https://user-images.githubusercontent.com/62628408/166808069-166b12df-f1cb-431f-b1b9-887986cea367.png) | [darn.es](https://darn.es) | None | Netlify, Jekyll, ETC | 22 | | Schulz Daniel | ![schulz](https://user-images.githubusercontent.com/62628408/166809062-f266e962-87e7-462d-b7ae-e0fae2b6227d.png) | [iamschulz.com](https://iamschulz.com) | [GitHub](https://github.com/iamschulz/iamschulz-hugo) | Hugo, Shell, JavaScript | 23 | | Rafael Conde | ![rafael](https://user-images.githubusercontent.com/62628408/166811371-2ab2bc24-0d8a-4841-b859-13f65fb0dc17.png) | [rafa.design](https://rafa.design) | [GitHub](https://github.com/rafaelconde/rafaelconde) | Nunjucks, JavaScript, CSS | 24 | | Bruno Simon | ![bruno-simon](https://user-images.githubusercontent.com/62628408/167303510-f39c3350-4273-4f6f-b28e-12f095f2af7a.png) | [bruno-simon.com](https://bruno-simon.com) | [Github](https://github.com/brunosimon/folio-2019) | GSAP, ThreeJS, JavaScript, ETC | 25 | | Oluwadare Oluwaseyi | ![seyi](https://user-images.githubusercontent.com/62628408/167304333-0f446a58-b279-4d19-8f01-320be629227c.png) | [seyi.dev](https://www.seyi.dev) | [GitHub](https://github.com/oluwadareseyi/folio-v2) | HTML, SCSS, JavaScript, GSAP | 26 | | Jason Lengstorf | ![jason](https://user-images.githubusercontent.com/62628408/167304726-d8931575-6d37-453f-a2b5-02d6ba96b0ef.png) | [jason.energy](https://www.jason.energy) | [GitHub](https://github.com/jlengstorf/jason.energy) | JavaScript, TypeScript, Nunjucks, CSS | 27 | | Deidre Driscoll | ![deidre](https://user-images.githubusercontent.com/62628408/169664358-7b8c417c-6e9b-4f90-8b60-00d0a79a960d.png) | [deidredriscoll.com](https://deidredriscoll.com) | None | HTML, JavaScript, CSS, GSAP | 28 | | Chris Porter | ![chris-poter](https://user-images.githubusercontent.com/62628408/169663850-4e599cde-da68-4794-8806-9c3b6a8fe11e.png) | [madebyporter.com](https://madebyporter.com) | [GitHub](https://github.com/madebyporter/madebyporter) | HTML, Slim, Ruby, SCSS, Shell, JavaScript, CSS | 29 | | Louis Hoebregts | ![louis](https://user-images.githubusercontent.com/62628408/169704989-de117c0c-7277-4523-8db4-275c561eebc8.png) | [mamboleoo.be](https://www.mamboleoo.be) | None | PHP, Parcel | 30 | | Adrien Gervaix | ![adrlen-gervalx](https://user-images.githubusercontent.com/62628408/169705213-49e68326-ffbf-4d3d-8a55-ffda6ba6ae04.png) | [adriengervaix.com](https://adriengervaix.com) | None | HTML, CSS, JavaScript | 31 | | Aaron Shapiro | ![aaron-shapiro](https://user-images.githubusercontent.com/62628408/169705836-7adab895-edc8-41c0-85c0-6ad53e79ad17.png) | [aaron.mn](https://www.aaron.mn) | [GitHub](https://github.com/aarshap/aaron.mn) | React, Gatsby, Styled Components, Netlify | 32 | | Peter Tait | ![Peter-tait](https://user-images.githubusercontent.com/62628408/169706070-12936622-7740-4e67-a764-aa3594bab506.png) | [petertait.com](https://petertait.com) | [GitHub](https://github.com/petertait/petertait.com) | React, Webpack, Radium, Netlify | 33 | | Rick Waalders | ![rick-waalders](https://user-images.githubusercontent.com/62628408/169706503-e0065c41-b88d-43bb-9175-dfd48cc6e324.png) | [rickwaalders.com](https://www.rickwaalders.com) | None | NextJS, React, NodeJS, GSAP, Webpack | 34 | | Community Pro | ![communitypro](https://user-images.githubusercontent.com/62628408/170606950-2eeec46f-f0c0-424d-9937-c0377fab1870.png) | [cpro-portfolio-html](https://cpro-portfolio-html.netlify.app) | [Github](https://github.com/CommunityPro/portfolio-html) | HTML, CSS, JavaScript | 35 | | Ahmed Zougari | ![portfolio](https://user-images.githubusercontent.com/24995094/171908358-20bf2338-1e1d-4a14-9349-28779a7c1994.png) | [ahmedzougari.com](https://ahmedzougari.com) | [GitHub](https://github.com/zougari47/portfolio-template) | HTML, SASS, Bootstrap, JavaScript, Vite | 36 | | Raj Savaliya | ![portfolio](https://user-images.githubusercontent.com/46242040/171985853-dbecac5c-fc94-4050-9f2f-5dba1e95c7bb.png) | [rajsavaliya.com](https://www.rajsavaliya.com/) | [GitHub](https://github.com/SRX9/portfoliosrx9) | NextJS, React, TypeScript, Tailwind CSS | 37 | | Israel Mitolu | ![Israelmitolu](https://user-images.githubusercontent.com/53873209/171987187-5a8cd378-13c0-4111-aab8-b76f01039992.png) | [israelmitolu.netlify.app](https://israelmitolu.netlify.app) | [GitHub](https://github.com/israelmitolu/premier-portfolio) | HTML, SASS, Javascript, GSAP | 38 | | Saikat Roy | ![Portfolio Saikat Roy](https://user-images.githubusercontent.com/28055486/171989464-e634cbf9-2772-4119-9e16-3283649290e4.png) | [saikatroy.netlify.app](https://saikatroy.netlify.app/) | [GitHub](https://github.com/njmsaikat/portfolio) | HTML, CSS, Bootstrap, JavaScript, jQuery | 39 | | Anand Baraik | ![portfolio](https://user-images.githubusercontent.com/31516195/170092193-d24327ca-f035-4074-8fde-57238ef570d6.png) | [anandbaraik.github.io](https://anandbaraik.github.io) | [GitHub](https://github.com/anandbaraik/anandbaraik.github.io) | HTML, CSS, React.js | 40 | | Nirban Chakraborty | ![portfolio](https://user-images.githubusercontent.com/74231771/172013597-2d2fdb32-2695-4121-9e25-56a28443565a.png) | [nirban-chakraborty.netlify.app](https://nirban-chakraborty.netlify.app/) | [GitHub](https://github.com/nirban256/personal_website) | ReactJs, JavaScript, SASS, HTML | 41 | | Benaiah Alumona | ![portfolio](https://user-images.githubusercontent.com/65370456/172291784-f6e5453c-f46b-43c1-b509-50dea24aef41.png) | [benrobo.vercel.app](https://benrobo.vercel.app) | [GitHub](https://github.com/benrobo/portfolio-v3) | Reactjs, TailwindCss, Next.js, Emailjs, BaayMax | 42 | | Md Nayeem Hossain | ![nayeemdev](https://user-images.githubusercontent.com/40033062/172034871-ff70f3fd-0311-4ee9-92bd-3b1fbc0adb9b.png) | [nayeemdev.github.io/](https://nayeemdev.github.io/) | [GitHub](https://github.com/nayeemdev/nayeemdev.github.io) | HTML, CSS, Bootstrap, Javascript, jQuery | 43 | | Sachin Chaurasiya | ![Sachin-chaurasiya](https://user-images.githubusercontent.com/59080942/172006977-6e120ee4-9440-405e-b5ac-e861e4eeedb2.png) | [sachinchaurasiya.dev](https://sachinchaurasiya.dev) | None | HTML, CSS, JavaScript, ReactJs, Material UI | 44 | | Anish De | ![anishde-dev](https://user-images.githubusercontent.com/51731966/172062656-0b29d77e-a7b3-4e60-aa1b-5667a2bb009c.png) | [anishde.dev](https://anishde.dev) | [GitHub](https://github.com/AnishDe12020/portfolio) | Next.js, TypeScript, Tailwind CSS, Content Layer | 45 | | Shourya Shikhar Ghosh | ![portfolio-flutter_dev_folio](https://user-images.githubusercontent.com/55531939/172037173-728af808-9299-4ecf-b68d-3dd2f39f5c7c.png) | [shourya.vercel.app](https://shourya.vercel.app) | [GitHub](https://github.com/danger-ahead/flutter_dev_folio) | Flutter | 46 | | Omar Sherif Ali ~OSA | ![portfolio](https://user-images.githubusercontent.com/69806823/172054679-32dff626-d0ea-49ac-955c-30370b575263.png) | [osa-portfolio.vercel.app](https://osa-portfolio.vercel.app/) | [GitHub](https://github.com/omar-sherif9992) | ReactJs, JavaScript, CSS, HTML | 47 | | Robby Leonardi | ![robby-leonardi](https://user-images.githubusercontent.com/86816711/172065557-6e6ea80f-aa5b-4b43-8b90-438b6fd13b1c.png) | [rleonardi.com/](http://www.rleonardi.com) | None | NextJS, React, NodeJS, GSAP, Webpack | 48 | | Serdar Gökhan | ![serdargokhan-portfolio](https://user-images.githubusercontent.com/55996319/172113874-d9ef07c2-beef-4f11-b471-c68507f45db6.png) | [serdargokhan.dev](https://serdargokhan.dev) | [GitHub](https://github.com/serdargokhan/portfolio-website-v1) | NextJS, TypeScript, TailwindCSS | 49 | | Jeferson Brito | ![jeferson-brito](https://user-images.githubusercontent.com/30840709/172082704-87e2a4e4-4573-42e3-b953-b1bcb36f43ad.png) | [jefersonsilva.me/](https://www.jefersonsilva.me/) | [GitHub](https://github.com/jeferson-sb/portfolio) | Vue 3.0, Vite | 50 | | Trịnh Minh Nhật | ![trinhminhnhat's portfolio](https://user-images.githubusercontent.com/36529802/172173263-d87afabd-884d-4d88-b435-867f0963b868.png) | [trinhminhnhat.com](https://trinhminhnhat.com) | None | React, Tailwindcss | 51 | | Yunus Ertürk | ![yunus-erturk-portfolio](https://user-images.githubusercontent.com/2564340/172195787-6a42346a-1eba-4d45-b070-c34863f4fddb.png) | [yunuserturk.com](https://yunuserturk.com) | None | HTML, CSS, React, NextJS, | 52 | | Phong Nguyen | ![phong-nguyen](https://user-images.githubusercontent.com/88878684/172379242-6d063948-767d-40fd-a072-30cf875a91bc.png) | [napthedev.com](https://napthedev.com) | [Github](https://github.com/napthedev/portfolio-next) | Nextjs, Tailwind, Framer-motion, Locomotive-scroll | 53 | | Ismael López | ![Portfolio Ismael López](https://user-images.githubusercontent.com/13697123/172250584-228bf0c6-3dbd-4bf8-8f4e-1d0bdd29dbb1.png) | [ismaellopez.dev](https://ismaellopez.dev) | None | Svelte, JavaScript, CSS, HTML, Netlify CMS | 54 | | Micah Lindley | ![Screenshot 2022-06-07](https://user-images.githubusercontent.com/86574651/172486974-7718d5b2-0386-477c-a912-21879def00c3.png) | [micahlindley.com](https://micahlindley.com) | [GitHub](https://github.com/micahlt/micahlt.github.io) | Vue 3, Vite | 55 | | Tri Dang | ![Tri-Dang](https://user-images.githubusercontent.com/6835551/172994818-e570612c-c286-4d23-8f41-1d09025d7a52.png) | [tri-dang.github.io](https://tri-dang.github.io/about) | [GitHub](https://github.com/tri-dang/tri-dang.github.io) | Ruby, Jekyll, Markdown | 56 | | Reza Ghasemzadeh | ![rezaghz](https://user-images.githubusercontent.com/36597017/172766065-02873144-d8df-4097-939f-5fa54fb339f0.jpg) | [rezaghz.com](https://rezaghz.com) | None | HTML, CSS, Bootstrap,Javascript, Blade | 57 | | Ariful Alam | ![gitprofile-portfolio](https://user-images.githubusercontent.com/45073703/172781247-64b27deb-777e-48ec-b409-d1547bd7f96f.png) | [arifszn.github.io/gitprofile](https://arifszn.github.io/gitprofile) | [GitHub](https://github.com/arifszn/gitprofile) | React, Vite, Tailwind CSS | 58 | | Dale Larroder | ![dalelarroder.com](https://user-images.githubusercontent.com/52998821/172965944-b25832f5-53a1-4833-a651-26d5ca0cdb20.png) | [dalelarroder.com](https://dalelarroder.com) | [GitHub](https://github.com/dlarroder/dalelarroder) | NextJS, Preact, TypeScript, Tailwind, MDX | 59 | | Williams Samuel | ![portfolio-williams](https://github.com/williamssam/My-Portfolio/raw/main/screenshot.jpg) | [williamssam.netlify.app](https://williamssam.netlify.app/) | [GitHub](https://github.com/williamssam/My-Portfolio) | HTML, CSS, Javascript | 60 | | Guillaume Gouessan | ![Guillaume Gouessan](https://user-images.githubusercontent.com/71810927/173070183-c0d30acf-2199-47a3-b0dd-919998e45e69.png) | [guillaumegouessan.com](https://guillaumegouessan.com/) | [GitHub](https://github.com/superguigui/guillaumegouessan.com) | GSAP, ThreeJS, JavaScript | 61 | | Patrick Heng | ![Patrick Heng](https://user-images.githubusercontent.com/71810927/173091834-946abebd-d814-4b52-be4e-49b6dc9cd521.png) | [patrickheng.com](https://patrickheng.com/) | None | Nuxt.js, GSAP, ThreeJS | 62 | | Andrew Baisden | ![Andrew Baisden](https://user-images.githubusercontent.com/5095486/173239467-0c16213e-e41c-47e8-94cc-959706474ee7.png) | [andrewbaisden.com](https://andrewbaisden.com) | [GitHub](https://github.com/andrewbaisden/andrew-baisden-portfolio-2022) | HTML, CSS, TypeScript, ReactJS | 63 | | Aziz Rahman | ![Aziz Stark](https://user-images.githubusercontent.com/35897418/174632557-a890ce80-1ded-477a-b99b-336c500a044f.png) | [azizstark.com](https://azizstark.com) | [Github](https://github.com/AzizStark/AzizStark/tree/portfolio-v2) | React, Gatsby, Styled-Components, SCSS, AnimeJS | 64 | | Leonel Ngoya | ![Leonel NGOYA • FrontEnd Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/8c34c73d-af10-4ae8-bc71-236af3851e55) | [lndev.me](https://lndev.me) | [GitHub](https://github.com/ln-dev7) | HTML, CSS, JavaScript | 65 | | Jimmy Soussan | ![Cozy Codeur _ Jimmy Soussan](https://user-images.githubusercontent.com/32173192/174971390-5c5714ac-abef-49b3-b903-1e4456481a13.png) | [cozy-codeur.fr](https://www.cozy-codeur.fr) | [Github](https://github.com/jilink/personal-portfolio) | React, Gatsby, Chakra UI, Framer Motion | 66 | | Segun Ajibola | ![profile](https://user-images.githubusercontent.com/74687658/175204130-9b244725-408f-432b-955f-ecd3e4d340a4.png) | [segunajibola.com](https://www.segunajibola.com) | [Github](https://github.com/segunajibola/portfolio) | HTML, CSS, TailwindCSS, React, SwiperJS | 67 | | Hisami Kurita | ![Hisami Kurita](https://user-images.githubusercontent.com/53873209/175480204-5de0a83a-2f44-4c87-b230-98387847dce5.jpg) | [hsmkrt1996.com](https://hsmkrt1996.com/) | [Github](https://github.com/hisamikurita/hisamikurita-portfoliosite) | Vue.js, Nuxt.js, SCSS, ThreeJS, GSAP, ASSCROLL, imagesLoaded | 68 | | Dennis Snellenberg | ![dennis-stellenberg](https://user-images.githubusercontent.com/62628408/175517075-23ee52df-8724-4772-a46d-d3ff28c5e30a.png) | [dennissnellenberg.com](https://dennissnellenberg.com/) | None | GSAP. JQuery, PHP, VueJS | 69 | | Isaac Fayemi | ![isaac fayemi](https://user-images.githubusercontent.com/53873209/175786263-413a941c-99c8-4ac5-a54f-5af3cecdcf33.png) | [fayemi.design](https://www.fayemi.design/) | None | Vanilla JS, pug, Prismic CMS, SCSS, ThreeJS, GSAP | 70 | | Bhavin Virani | ![bhavin-virani](https://user-images.githubusercontent.com/66407251/176358358-0cfb52ee-816c-4094-a104-3df88f94a082.png) | [bhavinn.xyz](https://bhavinn.xyz) | [Github](https://github.com/bhavinvirani/Protfolio) | HTML, CSS, JS, React.js, Github API | 71 | | Patrick Scott | ![Patrick Scott](https://user-images.githubusercontent.com/4536756/176472964-e5c42bbf-e33c-4cc0-98b3-14f2dea2c4ef.png) | [pscott.io](https://pscott.io) | None | React.js, Heroku and Github Pages | 72 | | Lazar Nikolov | ![lazar-nikolov](https://user-images.githubusercontent.com/5396211/176441285-ec27b56f-c3b8-4f16-8900-11159bd133a8.png) | [nikolovlazar.com](https://nikolovlazar.com) | [Github](https://github.com/nikolovlazar/nikolovlazar.com) | Next.js, Chakra UI, MDX, Prisma, PlanetScale | 73 | | Reuben Rapose | ![ss-website](https://user-images.githubusercontent.com/54074556/176431686-61ebae05-7555-49d9-9736-94038afe9968.png) | [reubence.com](https://reubence.com) | [GitHub](https://github.com/reubence/reubence) | HTML, TailwindCSS, React, Javascript, Next.JS, MDX, Mailchimp Newsletter, Gisqus Comments, etc. | 74 | | M. Shahanwaz | ![portfolio-ms](https://user-images.githubusercontent.com/57594421/176514845-cca4bf4b-42a4-4ec9-b7f2-21e41f4fe543.png) | [mshahanwaz.me](https://mshahanwaz.me) | [GitHub](https://github.com/mshahanwaz/portfolio-v4) | HTML, CSS, JavaScript, React, Next.js, Nodemailer | 75 | | Lee Robinson | ![lee-robinson](https://user-images.githubusercontent.com/62628408/177008471-0421b1f6-14c1-4c02-9e96-68e9cda604cf.png) | [leerob.io](https://leerob.io/) | [GitHub](https://github.com/leerob/leerob.io) | Next.js, PlanetScale, Prisma, Vercel, Sanity, Tailwind CSS | 76 | | Parth Desai | ![parth-desai](https://user-images.githubusercontent.com/68416104/177186186-1fa8baa4-c03c-49be-b9ec-08476a678356.png) | [musing.vercel.app](https://musing.vercel.app/) | [GitHub](https://github.com/pycoder2000/blog) | TailwindCSS, React, Javascript, Next.JS, MDX, Mailchimp Newsletter, Gisqus Comments | 77 | | Victor Ikechukwu | ![victor-site](https://user-images.githubusercontent.com/69702944/177051340-bc7bd4cc-b3af-4fd6-9dba-d102ebb9b0fe.png) | [iamvictor.tech](https://iamvictor.tech) | None | Next.js, Tailwind CSS, React Rough Notation, Vivus, Netlify | 78 | | Usman Sabuwala | ![usman-s](https://user-images.githubusercontent.com/107297384/177572197-e0ecc686-260e-48eb-99e3-dcf4061f8d50.png) | [usman-s.me](https://www.usman-s.me) | [GitHub](https://github.com/max-programming/usman-s.me) | NextJS, Chakra UI, Framer Motion | 79 | | Zacky Aduoli | ![zacky](https://user-images.githubusercontent.com/49382800/177875273-53d77154-14d4-4db8-a9d9-7de204941813.png) | [lookupzach.netlify.app](https://lookupzach.netlify.app) | None | ReactJS, Material UI, SCSS, Styled Components | 80 | | Payton Pierce | ![Payton Pierce](https://user-images.githubusercontent.com/18350557/176930938-fc5fab09-c45c-4c4c-a85a-0a3cdd9a4e81.png) | [paytonpierce.dev](https://paytonpierce.dev) | [GitHub](https://github.com/paytonjewell/paytonpierce.dev) | ReactJS, Material UI | 81 | | Jacob Valdez | ![jacobfv github io](https://user-images.githubusercontent.com/40343913/178501844-3067eecd-de14-47ff-812b-57ad1bb3c50c.png) | [jacobfv.github.io](https://jacobfv.github.io) | [GitHub](https://github.com/JacobFV/jacobfv.github.io) | HTML, Jekyll | 82 | | Jasmeet Singh | ![jasmeetsinghbhatia.github.io/resume](https://user-images.githubusercontent.com/5153163/178646040-abc99b1e-59b6-4c75-b9a4-a94f269a7b75.png) | [jasmeetsinghbhatia.github.io/resume](https://jasmeetsinghbhatia.github.io/resume) | [GitHub](https://github.com/jasmeetsinghbhatia/resume) | HTML, CSS, JavaScript | 83 | | Walter Teng | ![walterteng.com](https://user-images.githubusercontent.com/16046667/181013137-42c1cbee-351b-4582-943d-85a742fe0332.png) | [walterteng.com](https://walterteng.com/) | [GitHub](https://github.com/davzoku/personal-website-v1) | React, Typescript, Gatsby, Netlify | 84 | | Jahidul Islam | ![Jahidul Islam](https://xahidex.com/site-preview.png) | [XahidEx.com](https://xahidex.com/) | None | Typescript, NextJs, TailwindCSS, Prisma, Contentlayer, React | 85 | | Greg Sithole | ![greg-sithole](https://user-images.githubusercontent.com/18423188/182963873-6fe4d0a1-5fca-4b29-a44e-3372e36304b7.png) | [gregsithole.com](https://gregsithole.com) | [GitHub](https://github.com/GregSithole/gregsithole-react-portfolio) | HTML, CSS, React.js | 86 | | Rohit Saini | ![portfolio](https://user-images.githubusercontent.com/40729749/183277227-6a2a2537-bb13-4836-bab2-a5f1a56b0ab7.jpg) | [rohit-saini](https://portfolio-45b9b.web.app/) | None | ReactJs, CSS, GSAP, Framer Motion | 87 | | Oscar Barajas | ![gndx.io](https://user-images.githubusercontent.com/10554486/181944426-ba1b32bf-0adf-44e5-b3b0-f99412932d78.png) | [gndx.io](https://gndx.io) | [GitHub](https://github.com/gndx/gndx.io) | HTML, TailwindCSS | 88 | | Phillip Cabrera | ![portfolio](https://user-images.githubusercontent.com/77460748/183470369-4869772d-a402-49b2-baf2-9b14ab2b237b.png) | [Portfolio](https://pcabreram-portfolio.netlify.app/) | [GitHub](https://github.com/pcabreram1234/portfolio) | HTML, CSS, JavaScript, Webpack, ReactJs | 89 | | Nahuel Carrizo | ![portfolio](https://raw.githubusercontent.com/Nahuel61920/portafolio-Nahuel/main/src/img/portfolio.png) | [Portfolio](https://nahuel61920.github.io/portafolio-Nahuel/) | [GitHub](https://github.com/Nahuel61920/portafolio-Nahuel) | HTML, CSS, JavaScript, React, Webpack, Github Pages | 90 | | Alfaizkhan Pathan | ![alfaiz](https://user-images.githubusercontent.com/62628408/208278845-8b1059e8-7585-43c3-970e-443c9dd58625.png) | [Portfolio](https://alfaizkhan.github.io) | [GitHub](https://github.com/Alfaizkhan/alfaizkhan.github.io) | Flutter, Dart, Github Pages | 91 | | Jatin Kamboj | ![portfolio](https://i.imgur.com/TxglVle.png) | [jatinkamboj.me](https://jatinkamboj.me/) | None | HTML, CSS, JavaScript, GreenSock | 92 | | Leonid Meleshin | ![brave_o60SUhpdaP](https://user-images.githubusercontent.com/1759654/185768959-9d50c46f-b4fe-4c2d-91e2-539bb7e5b3bf.png) | [leon0399.ru](https://leon0399.ru/) | [GitHub](https://github.com/leon0399/leon0399.ru) | ReactJS, Tailwind, CSS, Vercel | 93 | | Brayden | ![brayden_portfolio](https://user-images.githubusercontent.com/71810927/185853762-ec9618d3-182c-4f42-9e80-0c3935fefb61.png) | [braydentw.io](https://braydentw.io/) | [GitHub](https://github.com/BraydenTW/braydentw.io) | React, NextJS, TailwindCSS | 94 | | Ben | ![bens_portfolio](https://user-images.githubusercontent.com/71810927/185855136-99dfebf8-5a4b-45b8-82e9-5416390eea23.png) | [nuro.dev](https://nuro.dev/) | [GitHub](https://github.com/NuroDev/nuro.dev) | React, NextJS, TailwindCSS | 95 | | Matthias Kretschmann | ![matthias_portfolio](https://user-images.githubusercontent.com/71810927/185856268-aa8375e6-e5ef-42cd-8261-1156cfe30f51.png) | [matthiaskretschmann.com](https://matthiaskretschmann.com/) | [GitHub](https://github.com/kremalicious/portfolio) | React, Gatsby | 96 | | Hamish Williams | ![Hamish_portfolio](https://user-images.githubusercontent.com/71810927/185857302-157bc072-8dc0-46ac-a89a-b2d0a40f06cb.png) | [hamishw.com](https://hamishw.com/) | [GitHub](https://github.com/HamishMW/portfolio) | React, ThreeJS, NextJS | 97 | | Çağlar Turalı | ![caglar portfolio](https://user-images.githubusercontent.com/71810927/185857785-a1da121c-15fe-48dc-b242-e79811c676f7.png) | [turali.js.org](https://turali.js.org/) | [GitHub](https://github.com/caglarturali/caglarturali.github.io) | React, TypeScript | 98 | | Pyae Sone | ![pyaesone_portfolio](https://user-images.githubusercontent.com/99592123/186507689-9342132b-ff92-4883-b944-511ba3fef734.png) | [pyaesonepsn.github.io](https://pyaesonepsn.github.io/portfolio-project/) | [GitHub](https://github.com/pyaesonepsn/portfolio-project) | HTML, CSS, JavaScript | 99 | | Efren Martinez | ![portafolio-efrencodes](https://user-images.githubusercontent.com/10801400/187723688-077ff829-813b-4201-a5e2-39306b0aed58.png) | [efrencodes.com](https://efrencodes.com) | [GitHub](https://github.com/efrencodes/efrencodes.ts) | NextJS, TypeScript, TailwindCSS | 100 | | Eliaz LR | ![Portfolio-EliazLR](https://user-images.githubusercontent.com/47760515/188088628-7f9e7f92-6848-4f98-924c-46343e50cf49.png) | [portfolio2.eliaz-lr.dev](https://portfolio2.eliaz-lr.dev/) | [GitHub](https://github.com/Eliaz-LR/Personal-website-v2) | Vue 3, Vite, TailwindCSS | 101 | | Hikmet C. Kufteoglu | ![hicaku](https://user-images.githubusercontent.com/40501852/188321184-0d750ecd-85ae-491a-8e34-ecfd393a2d0c.png) | [hicaku.com](https://hicaku.com) | [GitHub](https://github.com/spencehiko/portfolio) | Vue 3, Pinia, TypeScript | 102 | | Ara Oladipo | ![ara-portfolio](https://user-images.githubusercontent.com/67078991/189193913-3e351d62-8515-47cd-9069-c449b0c81a77.png) | [araoladipo.tech](https://araoladipo.tech/) | [GitHub](https://github.com/Ara-O/Portfolio-Website) | HTML, CSS, Javascript, Vue.js, Spline3D | 103 | | Anthony Fu | ![antfu](https://user-images.githubusercontent.com/62628408/189466543-8297ec23-92e1-445d-8b26-dc2f38e73dc9.png) | [antfu.me](https://antfu.me/) | [GitHub](https://github.com/antfu/antfu.me) | VueJS, Markdown, TypeScript, CSS, HTML | 104 | | Timothy Lin | ![timothy](https://user-images.githubusercontent.com/62628408/189490154-bd5ed60d-b9f7-40e5-ae26-639c7fe1f450.png) | [timlrx.com](https://timlrx.com) | [GitHub](https://github.com/timlrx/timlrx.com) | NextJS, MDX, TailwindCSS, JavaScript, SASS | 105 | | Ngô Phú Thịnh | ![thinh](https://user-images.githubusercontent.com/62628408/189491074-008e03d5-b8f9-42df-8ac9-107bf3fa929e.png) | [thinhcorner.com](https://thinhcorner.com) | [GitHub](https://github.com/Th1nhNg0/th1nhng0.vercel.app) | NextJS, TailwindCSS, TypeScript, CSS | 106 | | Josiah B. Etuk | ![josiah etuk portfolio](https://user-images.githubusercontent.com/53873209/189539405-c7384739-aa02-42fe-9a64-e35f15b66833.png) | [jobenetuk.dev](https://jobenetuk.dev/) | None | Vanilla JS, Node JS, Prismic CMS, SASS, GSAP | 107 | | Stef Ivanov | ![StefIvanov](https://user-images.githubusercontent.com/18528418/190108679-aba5e134-4967-4a36-a516-632b21a8e477.png) | [stefivanov.com](https://stefivanov.com) | None | WordPress, Yoast SEO, MailChimp, PWA, Google Analytics, Sumo. | 108 | | Erika Senft Miller | ![Erika Senft Miller](https://user-images.githubusercontent.com/18528418/190111997-dad66b59-f31f-4f1b-82e1-0f9a3367c45a.png) | [erikasenftmiller.com](https://www.erikasenftmiller.com/) | None | Contentful, GSAP, LazySizes, PWA, Google Analytics. | 109 | | Ruben Kuipers | ![RubenKuipers](https://user-images.githubusercontent.com/18528418/190115658-9fee276a-b79c-4a82-aaba-19e63c3e625d.png) | [rubenkuipers.design](https://rubenkuipers.design/) | None | Vue.js, Nuxt.js, Tailwind CSS, scrollreveal, Google Tag Manager, Google Analytics | 110 | | Maggie Appleton | ![MaggieAppleton](https://user-images.githubusercontent.com/18528418/190361290-ec86e3f1-d6a2-49c2-a893-225cc92d1247.png) | [maggieappleton.com](https://maggieappleton.com/) | [Github](https://github.com/MaggieAppleton/maggieappleton.com-V2) | React, Next.js, MDX, Algolia Search, Reach UI, Tippy.js, Framer Motion, styled-components, Lodash | 111 | | Moe Dayraki | ![MoeDayraki](https://user-images.githubusercontent.com/54773679/191480771-849128cd-4b2c-4283-bb46-b7baa7a35f0a.jpg) | [moe.dayrakiarts.com](https://moe.dayrakiarts.com) | [Github](https://github.com/moedayraki/moedayraki.github.io) | Vue 3, Vite, Cypress, Tailwindcss, Typescript, Pinia, Primevue, magic.css, VueUse | 112 | | Truong Phan | ![Techika](https://user-images.githubusercontent.com/259888/192136996-006f2a19-4d4f-496e-89f6-7fbbbf6f2741.png) | [techika.com](https://techika.com) | [Github](https://github.com/infantiablue) | Vue 3, Vite, VuePress, Tailwindcss, Tailwind, Lighthouse | 113 | | Wasim Baig | ![wasim](https://user-images.githubusercontent.com/84036037/192362869-392ba8db-20d3-403f-a000-15636cb4f2c3.png) | [wasimbaig.com](https://wasimbaig.com) | [GitHub](https://github.com/simbaig/portfolio-nextjs) | Next JS, Tailwind CSS, Framer-Motion | 114 | | Mike Bifulco | ![mike-bifulco](https://user-images.githubusercontent.com/62628408/194711236-9e9cda7f-0611-4756-b237-ae122e355c75.png) | [mikebifulco.com](https://mikebifulco.com) | [GitHub](https://github.com/mbifulco/blog) | NextJS, React, SCSS, MDX, Vercel | 115 | | Shodipo Ayomide | ![shodipo-ayomide](https://user-images.githubusercontent.com/62628408/194711642-0618e969-2672-4179-90ed-b5909e0bf665.png) | [shodipoayomide.com](https://shodipoayomide.com/) | [GitHub](https://github.com/Developerayo/shodipoayomide.com) | Gatsby, React, SCSS, Bootstrap, Jquery | 116 | | Damian Watracz | ![damian](https://user-images.githubusercontent.com/62628408/194712470-98eec307-9b9c-4181-9167-2945b6362d5c.png) | [watracz.com](https://watracz.com/) | None | HTML, CSS, JavaScript, Swiper | 117 | | Franklin Ohaegbulam | ![frankiefab100](https://user-images.githubusercontent.com/46662771/195562343-cd7e2407-949e-4dba-813d-af6855b17e41.png) | [frankiefab.com](https://frankiefab.com) | [GitHub](https://github.com/frankiefab100/frankiefab.tech) | HTML, CSS, JavaScript | 118 | | Samuel Akinosho | ![Samuel_Akinosho](https://user-images.githubusercontent.com/46662771/195622011-33744cb7-bb4b-4229-a104-d88d108c1487.png) | [samuelakinosho.com](https://www.samuelakinosho.com/) | None | Webflow, Jquery | 119 | | Rutik Wankhade | ![rutik](https://user-images.githubusercontent.com/62628408/196155918-9068722c-875f-4016-ae89-37f63a4e6f1f.png) | [rutikwankhade.dev](https://rutikwankhade.dev/) | None | NextJs, React, NodeJS, TailwindCSS | 120 | | Adenekan Wonderful | ![Adenekan_Wonderful](https://user-images.githubusercontent.com/46662771/196423111-7b262df6-9ee8-4f2e-9de5-7eb2cd3e6ebe.png) | [codewonders.dev](https://www.codewonders.dev/) | None | React, NextJS, Styled-components | 121 | | Olamide Sholanke | ![Olamide_Sholanke](https://user-images.githubusercontent.com/46662771/196424318-5de568ff-73d1-48ad-9087-bc38c6fe234c.png) | [olamide.dev](https://www.olamide.dev/) | None | Vue, NuxtJS | 122 | | Daniel Ezekiel | ![Daniel_Ezekiel](https://user-images.githubusercontent.com/46662771/196419585-4faaf914-3681-402f-8f31-a196b450d667.png) | [danielezekiel.me](https://danielezekiel.me/) | [GitHub](https://github.com/Daniel-Ezekiel/Portfolio-Website) | HTML, CSS, JavaScript | 123 | | Julia Johnson | ![Julia_Johnson](https://user-images.githubusercontent.com/46662771/196426246-88b06dd2-4305-4785-b795-6c8482874a36.png) | [juliacodes.com](https://www.juliacodes.com/) | [GitHub](https://github.com/juliacodes/JuliaCodesGatsby) | React, Styled-components | 124 | | Rida F'kih | ![Rida F'kih — Developer Designer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/736fec7a-d6e1-4541-bcca-a968c1ed8755) | [rida.dev](https://www.rida.dev/) | [GitHub](https://github.com/ridafkih/portfolio) | React, NextJS | 125 | | Anand Baraik | ![portfolio](https://user-images.githubusercontent.com/31516195/188324601-78b0b8d4-ddca-43f2-8d3e-a6ef0846e770.png) | [anandbaraik-folio.netlify.app](https://anandbaraik-folio.netlify.app/) | [GitHub](https://github.com/anandbaraik/anandfolio) | HTML, CSS. | 126 | | Abhishek Jha | ![Abhishek_Jha](https://user-images.githubusercontent.com/46662771/197171814-9902aa1a-8fc3-4ea0-9c5f-47f24bbec6e3.png) | [abhishekjha.me](https://www.abhishekjha.me) | None | HTML, CSS, JavaScript, Ruby on Rails, GSAP | 127 | | Olamide Adeyi | ![OLAMIDE_ADEYI](https://user-images.githubusercontent.com/46662771/197175156-6886c1c5-97ac-4305-bd60-5e824389c6be.png) | [olamideadeyi.com](https://www.olamideadeyi.com) | None | Vue, NuxtJS, GSAP | 128 | | Greg Ives | ![Greg_Ives](https://user-images.githubusercontent.com/53873209/227514948-40cb969e-f88c-4a83-8338-aeebaf44db58.png) | [gregives.co.uk](https://www.gregives.co.uk) | [GitHub](https://github.com/gregives/gregives.co.uk) | Vue, NuxtJS, SASS, Netlify | 129 | | Collins Enebeli | ![Kadet_Collins](https://user-images.githubusercontent.com/46662771/197170427-e2de03d3-f9f3-4893-a47a-ba554d70079a.png) | [kadet.dev](https://kadet.dev/) | [GitHub](https://github.com/kadetXx/kadet.dev) | React, Gatsby | 130 | | Cole_Solomon | ![Cole_Solomon](https://user-images.githubusercontent.com/46662771/197168195-e906ca7f-d0d1-4a39-9c05-ce3f8d3631e5.png) | [colesolomon.me](https://colesolomon.me/) | [GitHub](https://github.com/codecole/colesolomonme) | HTML, CSS, SASS, JavaScript, GSAP, W3js, PHP | 131 | | Adewale Adeyemi | ![Full-Stack-Dev-🤹-Adex](https://user-images.githubusercontent.com/113855742/208195796-b7c27dcf-67f0-4e1c-9c6d-e1d219bddbae.png) | [adex.onrender.com](https://adex.onrender.com/) | [GitHub](https://github.com/dev-adewale/portfolio) | Gridsome, GraphQL, Tailwind. | 132 | | Harsh Singh | ![harsh-singh](https://user-images.githubusercontent.com/62628408/197406605-8e3f25c7-85df-461d-a7e6-679f2a1be425.png) | [harshsingh.xyz](https://harshsingh.xyz/) | [GitHub](https://github.com/harshhhdev/harshhhdev.github.io) | NextJS, TailwindCSS, TypeScript, Prisma | 133 | | Wallace Nascimento | ![SrNascimento40](https://user-images.githubusercontent.com/65576111/197592263-52847d1a-6d4b-4528-9a5d-d28395761f5c.png) | [portfolio-srnascimento40.vercel.app](https://portfolio-srnascimento40.vercel.app/) | [GitHub](https://github.com/SrNascimento40/portfolio) | NextJS, ReactJS, TypeScript, Styled-Components | 134 | | Idris Olubisi | ![Idris Olubisi Portfolio](https://user-images.githubusercontent.com/45847909/198300427-860de419-9525-4e35-9b38-f6bfbba612d2.png) | [idrisolubisi.com](https://idrisolubisi.com) | [GitHub](https://github.com/Olanetsoft/idrisolubisi.com) | ReactJs, GatsbyJs, TypedJs, Styled Component | 135 | | Aycan Öğüt | ![aycan.dev](https://user-images.githubusercontent.com/74212439/199970839-6f0ab4f3-c63a-4052-a05c-e8503d7943de.png) | [aycan.dev](https://www.aycan.dev) | [Github](https://github.com/aycanogut/aycan.dev) | React, Next, TypeScript, Mantine | 136 | | Manish Kumar | ![manishk.dev](https://user-images.githubusercontent.com/54291836/200181649-39dd0705-d6ac-4f2c-a60a-926b6e713f2e.png) | [manishk.dev](https://manishk.dev) | [Github](https://github.com/manishprivet/portfolio) | React, Next, TypeScript, ParticleJS, Firebase, Vercel | 137 | | Andrea Toffanello | ![Andrea Toffanello portfolio](https://user-images.githubusercontent.com/53873209/200663072-b61f6f84-c482-45d1-9e60-85ab096aca8f.png) | [andreatoffanello.com](https://andreatoffanello.com) | None | VueJS, ThreeJS, GSAP, Blender | 138 | | Chandraprakash Darji | ![image](https://user-images.githubusercontent.com/93640141/201102466-189f51cb-f959-4645-920f-0b40d0ecc8a4.png) | [chandraprakash.vercel.app](https://chandraprakash.vercel.app/) | [Github](https://github.com/Chandraprakash-Darji/personal) | Nextjs, Typescript, Tailwindcss, Vercel | 139 | | Khaled Mohamed | ![image](https://user-images.githubusercontent.com/73050798/201541801-81a752fb-c3c7-44fc-9526-002ccd2af7ca.png) | [John Doe](https://portfolio-john2.netlify.app/) | None | HTML5, SCSS, Bootstrap5, JavaScript, SwipperJS, Netlify | 140 | | Michael Kolesidis | ![screenshot](https://raw.githubusercontent.com/michaelkolesidis/michaelkolesidis.com/main/screenshots/desktop_1.png) | [michaelkolesidis.com](https://michaelkolesidis.com/) | [GitHub](https://github.com/michaelkolesidis/michaelkolesidis.com) | TypeScript, p5.js, Sass, Vite | 141 | | Piyush Goyani | ![PiyushGoyaniPortfolio](https://user-images.githubusercontent.com/18528418/202102781-b1d7826f-d401-481b-afeb-d3d54f42ba7d.png) | [piyushgoyani.thesourcepedia.org](https://piyushgoyani.thesourcepedia.org) | None | VueJS, Gridsome, TailwindCSS, Firebase | 142 | | Vanessa Santana | ![VanessaPortfolio](https://user-images.githubusercontent.com/52542645/202289197-bdc535a8-ebbf-4416-a997-21cdb73e9cee.png) | [nessajs.com.br](https://www.nessajs.com.br/) | [GitHub](https://github.com/vanessa-dev/nessa.js) | HTML, CSS, JavaScript and PHP | 143 | | Mahmoud Elkariouny | ![protfolio_screenshot](https://user-images.githubusercontent.com/65455064/203590991-00b66db7-492d-46f4-980b-efbacb53a9fa.jpg) | [clear-sleet.surge.sh](https://clear-sleet.surge.sh/) | [GitHub](https://github.com/mahmoudessam820/my_portfolio) | HTML, CSS, JavaScript | 144 | | Antonio Ayola | ![portafolio Screenshot](https://user-images.githubusercontent.com/35477201/203847317-bf6f76f1-62f5-434b-9cdf-c4bf702eb001.jpg) | [antonioayola.netlify.app](antonioayola.netlify.app) | [GitHub](https://github.com/Tono2007/Portafolio) | React, HTML, CSS, Modules CSS, JavaScript, PWA | 145 | | Ajo Alex | ![portofolio Screenshot](https://user-images.githubusercontent.com/67946056/204500454-a8f4f10e-efd3-44ae-9f49-fa16106a8318.png) | [devpenzil.dev](https://devpenzil.dev/) | [GitHub](https://github.com/devpenzil/devpenzil.dev) | NextJS, Tailwind, GraphCMS | 146 | | Erys Mozo | ![portfolio_img](https://user-images.githubusercontent.com/69915035/204743807-5c96d774-c361-4b5a-8fe2-cf6eb587e0c6.JPG) | [erysmozo.vercel.app](https://erysmozo.vercel.app/) | [GitHub](https://github.com/ErysCode7/Web-Portfolio) | React, SASS, Vite, AOS | 147 | | Peace Jinadu-Paul | ![Portfolio Landing Page](https://user-images.githubusercontent.com/60526129/205677866-a6eae2e1-3ca6-4227-961e-69c3863b7b3d.png) | [pjpportfolio.netlify.app](https://pjpportfolio.netlify.app/) | [GitHub](https://github.com/Pappyjay23/my-portfolio-1) | React, HTML, CSS, Javascript, Framer Motion, Netlify | 148 | | Hari Prasad | ![hariprasad-designer](https://user-images.githubusercontent.com/75234157/205496938-3ad80cff-037f-47fb-a853-810c9eda9cb7.png) | [hariprasd.me](https://hariprasd.me) | [GitHub](https://github.com/hariprasd) | React, Tailwind CSS | 149 | | Danilo Batson | ![danilo-batson](https://user-images.githubusercontent.com/69876068/205551967-abc55adc-aae6-48c7-94cc-d9ed431c511a.png) | [batson-portfolio.vercel.app/](https://batson-portfolio.vercel.app/) | [GitHub](https://github.com/danilobatson/batson-portfolio) | TypeScript, JavaScript, Python, React, React Native, Vue, Express, Node, MongoDB, Next JS | 150 | | Soumyadeep Das Bhowmick | ![portfolio-sdb](https://user-images.githubusercontent.com/115442240/207277461-686247d5-01e7-4be8-ad0f-109ec2a637b1.png) | [soumyadeeposd.github.io](https://soumyadeeposd.github.io/Tensor-Block/) | [GitHub](https://github.com/SoumyadeepOSD/Tensor-Block) | HTML, CSS, JavaScript | 151 | | Byunggeun Cho | ![portfolio-sdb](https://user-images.githubusercontent.com/51329156/208891221-6e4dbd09-06cb-4568-abc8-98128f6b1bca.png) | [bbangjo.kr](https://bbangjo.kr) | [GitHub](https://github.com/bbangjooo/buffalo) | HTML, CSS, JavaScript, TypeScript, Threejs, Blender | 152 | | James Warner | ![james_warner](https://user-images.githubusercontent.com/62628408/209755001-3a603dcd-25bc-44b5-93a7-a5bc6cd44727.png) | [jmswrnr.com](https://jmswrnr.com/) | None | NextJS, Sanity, CSS, Preact, NodeJS, ThreeJS | 153 | | Maxime Heckel | ![maxime_heckel](https://user-images.githubusercontent.com/62628408/209755866-1407b7f2-bb47-44ec-8fe6-9ce92c84dcda.png) | [maximeheckel.com](https://maximeheckel.com/) | [GitHub](https://github.com/MaximeHeckel/blog.maximeheckel.com) | NextJS, TypeScript, Stiches/CSS, MDX | 154 | | Twan Mulder | ![twan_mulder](https://user-images.githubusercontent.com/62628408/209756628-7c93082a-3567-4238-9d65-1ea810fa1f51.png) | [twanmulder.com](https://www.twanmulder.com/) | [GitHub](https://github.com/twanmulder/portfolio) | React, TailwindCSS, Stripe, Netlify | 155 | | Rishi Mohan | ![Hi-I-m-Rishi-Mohan-](https://user-images.githubusercontent.com/46662771/210183301-599c1add-f507-4626-8912-b55ecf565614.png) | [rishimohan.me](https://rishimohan.me) | [GitHub](https://github.com/rishimohan/rishimohan.me) | Next.js, TailwindCSS, Framer Motion | 156 | | Nikhil Rajput | ![Nikhil-Rajput-Portfolio](https://user-images.githubusercontent.com/46662771/210183075-b58e2705-c2b9-4f16-adde-a19a12a3e8d9.png) | [nixrajput.nixlab.co.in](https://nixrajput.nixlab.co.in/) | [GitHub](https://github.com/nixrajput/portfolio-nextjs) | Next.js, SCSS, Node.js | 157 | | Raphaël Chelly | ![Raphaël-Chelly](https://user-images.githubusercontent.com/46662771/210182852-c316dc4e-c02a-436b-a526-53f2bdfe99a8.png) | [raphaelchelly.com/](https://www.raphaelchelly.com) | [GitHub](https://github.com/raphaelchelly/raph_www) | Next.js, TailwindCSS, Vercel | 158 | | Damian Demasi | ![Damian-Demasi-s-portfolio-site](https://user-images.githubusercontent.com/46662771/211422082-0eb8dafe-dcb5-4359-b6b7-7221ab0b6150.png) | [damiandemasi.com](https://www.damiandemasi.com/) | [GitHub](https://github.com/Colo-Codes/portfolio-v2) | ReactJS, TailwindCSS, DaisyUI | 159 | | Ifedili Onyegbu | ![Ifedili-Onyegbu-Software-Engineer](https://user-images.githubusercontent.com/46662771/211422589-ec814f14-9db7-4162-8f5f-5eaa8f037e8d.png) | [ifedili.com](https://www.ifedili.com) | [GitHub](https://github.com/saucecodee/ifedili.com) | Angular, TypeScript, SASS | 160 | | Daniel Cranney | ![daniel-cranney](https://user-images.githubusercontent.com/62628408/211936079-1cbf1c5e-4025-4c38-a69f-d2094f5af907.png) | [danielcranney.com/](https://www.danielcranney.com/) | [GitHub](https://github.com/danielcranney/portfolio) | NextJS, TailwindCSS, Vercel | 161 | | Abdellatif Laghjaj | ![abdellatif-laghjaj](https://user-images.githubusercontent.com/62628408/211947181-e796b197-856e-482f-be89-35b74d87d2e2.png) | [abdellatif-laghjaj.ml/](https://www.abdellatif-laghjaj.ml/) | None | VueJS, Lottilefiles, Verel, CSS | 162 | | Adham Dannaway | ![adhamdannaway-screenshot](https://user-images.githubusercontent.com/53873209/212376608-1647044c-3caa-48b7-b131-3407afc144ed.png) | [adhamdannaway.com](https://www.adhamdannaway.com/) | None | Wordpress, PHP, jQuery, MySQL | 163 | | Khaled Mohamed | ![Web capture_13-1-2023_22027_james-oliver-portfolio netlify app](https://user-images.githubusercontent.com/73050798/212409001-0bea2f47-3a9a-4cb9-9984-1940d216af5c.jpeg) | [James Oliver](https://james-oliver-portfolio.netlify.app/) | None | HTML5, CSS3, SCSS, Bootstrap5, TypeScript, SwipperJS, Fontello, PurgeCSS, Netlify | 164 | | Glayson Visgueira | ![glayson](https://user-images.githubusercontent.com/62628408/213310609-ff768322-2d69-45fc-864b-e2f0a50aa749.png) | [glaysonvisgueira.vercel.app](https://glaysonvisgueira.vercel.app/) | [GitHub](https://github.com/Glaysonvisgueira/glaysonvisgueira_next-js) | NextJS, Styled-components, NodeJS, Vercel, Animate.css, Lottiefiles | 165 | | Chai Phonbopit | ![add-ahoy](https://user-images.githubusercontent.com/62628408/214586571-d915e4ec-6f5c-4b2b-a554-b444b3eed04f.png) | [devahoy.com](https://devahoy.com/) | None | NextJS, Preact, Tailwind CSS, NodeJS | 166 | | Aravind Balla | ![aravind-balla](https://user-images.githubusercontent.com/62628408/215120342-a009d241-4d40-4c9d-938a-28381e07dac5.png) | [aravindballa.com](https://aravindballa.com) | [GitHub](https://github.com/aravindballa/website) | NextJS, TypeScript, Tailwind CSS, Vercel | 167 | | Khaled Mohamed | ![2023_213920_thomas-david-portfolio](https://user-images.githubusercontent.com/73050798/215182800-5f6da1a3-f8e0-4fb2-81c1-5ab5d8e136a8.jpeg) | [Thomas David](https://thomas-david-portfolio.netlify.app/) | None | React JS, Tailwind CSS, AOS, SwipperJS, React Scroll, React Icons, React Laze Load Image, PostCSS, Netlify | 168 | | Tanishka Yadav | ![tanishka yadav screenshot ](https://user-images.githubusercontent.com/53873209/215251625-a47dc95b-3326-4ebb-bcec-332614ffe4f8.png) | [tanishka-yadav.netlify.app](https://tanishka-yadav.netlify.app/) | [Github](https://github.com/Tanishka-dev/Portfolio-Reactjs) | ReactJS, Javascript, SASS, Framer Motion | 169 | | David Obodo | ![david obodo homepage](https://user-images.githubusercontent.com/53873209/215259720-12a184da-5958-42ec-bfbe-265055acff67.png) | [davidobodo.com](https://www.davidobodo.com/) | None | NextJS, Typescript, SASS, GSAP, Jest, Sendgrid, Google Analytics | 170 | | Manuel David Gomez | ![screenshot ManuelDav](https://user-images.githubusercontent.com/122189894/215547727-1ce1d61c-4a93-465d-afd3-c86b58d8eda1.png) | [manueldavgomez.com](https://manueldavgomez.github.io/manueldavidgomez/) | [Github](https://github.com/ManuelDavGomez/manueldavidgomez) | ReactJs, Javascript, Css, Bootstrap, Bootstrap Icons, React-Animate-On-Scroll, React-Scroll, Vite, TsParticles | 171 | | Olasunkanmi Balogun | ![Olasunkanmi — Front-end Developer](https://user-images.githubusercontent.com/80556643/215644049-188fe70d-a849-4f89-af62-751da7c3210b.png) | [kanmibalogun.vercel.app](https://kanmibalogun.vercel.app/) | [Github](https://github.com/SiR-PENt/folio-me) | NextJS, JavaScript, Tailwind, Framer-motion, vanilla CSS | 172 | | Priyankar Pal | ![Priyankar Pal](https://user-images.githubusercontent.com/88102392/218301986-7d08fa18-bdca-4898-82c0-9e64d7822b96.png) | [itspp.vercel.app](https://itspp.vercel.app) | [GitHub](https://github.com/priyankarpal/Priyankar) | HTML & SCSS | 173 | | Marieflor Bawanan | ![Marieflor Bawanan](https://user-images.githubusercontent.com/10086227/218483483-4a3358fd-a79a-4b81-b619-be28b3e0832c.png) | [marieflor.dev](https://marieflor.dev) | [GitHub](https://github.com/mariebawanan/marieflor.dev) | NextJS, TypeScript, TailwindCSS & GSAP | 174 | | Delba Oliviera | ![delba](https://user-images.githubusercontent.com/62628408/219158553-bc286921-2142-41e6-9167-88ef5b1348c1.png) | [delba.dev](https://delba.dev/) | [GitHub](https://github.com/delbaoliveira/website) | Next.js, MDX, Tailwind, Prisma, Typescript | 175 | | Vivek Patel | ![vivek-patel](https://user-images.githubusercontent.com/62628408/219168599-59df9692-93cf-415b-83b2-579f933dacf1.png) | [vivek9patel.github.io](https://vivek9patel.github.io/) | [GitHub](https://github.com/vivek9patel/vivek9patel.github.io) | NextJS, Tailwind CSS, GitHub Pages | 176 | | Sarah Dayan | ![sarah dayan screenshot](https://user-images.githubusercontent.com/53873209/219411465-b0ceecbe-835b-403a-951d-0e0a26f7ce6a.png) | [sarahdayan.dev](https://www.sarahdayan.dev/) | None | NextJS, Tailwind CSS, NodeJS, Vercel | 177 | | Theodorus Clarence | ![clarence theodorus screenshot](https://user-images.githubusercontent.com/53873209/219413309-8a34a630-9834-4f35-b973-c3c947ccede2.png) | [theodorusclarence.com](https://theodorusclarence.com/) | [Github](https://github.com/theodorusclarence/theodorusclarence.com) | NextJS, TypeScript, Tailwind CSS, MDX Bundler, Prisma | 178 | | Arafat Islam | ![arafat islam screenshot](https://user-images.githubusercontent.com/53873209/219415220-e937b428-af9c-4371-842a-89e59ffd26ee.png) | [portfolio-khaki-iota-89.vercel.app](https://portfolio-khaki-iota-89.vercel.app/) | [Github](https://github.com/arafat4693/portfolio) | NextJS, TypeScript, GraphQL, Tailwind CSS | 179 | | Siddharth Verma | ![sidharthviz](https://user-images.githubusercontent.com/74046564/220126823-63f205ae-db7c-4381-ad9a-f2d818b4f15e.png) | [iamdev.netlify.app/home.html](https://iamdev.netlify.app/home.html) | None | Tailwind, Javascript, React, html/CSS | 180 | | Abo Ghanbari | ![abo ghanbari screenshot](https://user-images.githubusercontent.com/53873209/219416647-1e3976ab-2675-4f53-acff-5021e04906bb.png) | [aboghanbari.com](https://www.aboghanbari.com/) | None | Gatsby, Emotion, GSAP, Preact | 181 | | PATRICK T.LO | ![patrick t.lo screenshot](https://user-images.githubusercontent.com/88075256/220258658-dda19639-2409-472e-ade3-e204f79ab5be.png) | [pleaseleaveon.com](https://pleaseleaveon.com/) | None | HTML5, CSS, JavaScript, jQuery | 182 | | Aliyah Adefolake | ![Aliyah Adefolake Portfolio](https://user-images.githubusercontent.com/53873209/220332052-589fbb61-8f37-4d0b-b5a9-da601a627a98.png) | [aliyahadefolake.com](https://www.aliyahadefolake.com/) | None | ReactJS, Gatsby, SASS, GSAP, Contentful | 183 | | Travis Fischer | ![travis fischer portfolio](https://user-images.githubusercontent.com/53873209/220334086-51f7e523-7451-46e8-b3b8-6aed86341229.png) | [transitivebullsh.it](https://transitivebullsh.it/) | [Github](https://github.com/transitive-bullshit/nextjs-notion-starter-kit) | NextJS, TypeScript, Notion API, Vercel | 184 | | Lynn Fisher | ![Lynn Fisher portfolio](https://user-images.githubusercontent.com/88075256/220362800-fe33d26e-8b09-4d29-9be8-b27aef020b01.png) | [lynnandtonic.com](https://lynnandtonic.com/) | [Github](https://github.com/lynnandtonic/lynnandtonic.com) | HTML5, CSS, JavaScript, SVG, Netlify, GoatCounter, HSTS, Open Graph | 185 | | Danny Garcia | ![Danny Garcia portfolio](https://user-images.githubusercontent.com/88075256/220831020-9c141f75-7b66-4274-9360-40d047d4501c.png) | [danny-garcia.com](https://danny-garcia.com/) | [Github](https://github.com/dannygarcia/dannygarcia.github.com) | HTML5, CSS, JavaScript, TypeScript, GLSL, Netlify | 186 | | Robin Payot | ![Robin Payot portfolio](https://user-images.githubusercontent.com/88075256/221104838-b82a01f2-b0f9-4d9a-bd0b-9fc7a87d2875.png) | [robinpayot.com](http://www.robinpayot.com/) | None | HTML5, CSS, JavaScript, GSAP, Howler.js, Hammer.js, three.js, WebGL, PWA, Open Graph, Apache | 187 | | Jesse Zhou | ![Jesse Zhou portfolio](https://user-images.githubusercontent.com/88075256/221340025-0e357cf8-61e3-461a-a969-11940d9c2ff1.png) | [jesse-zhou.com](https://jesse-zhou.com/) | [Github](https://github.com/enderh3art/Ramen-Shop) | HTML5, CSS, JavaScript, GLSL, Howler.js, GSAP, Three.js, Node.js, Vercel | 188 | | Rauno Freiberg | ![rauno Freiberg screenshot](https://user-images.githubusercontent.com/53873209/221341958-446d5cdf-bc22-47d2-9f09-fabe77e9eb5c.png) | [rauno.me](https://rauno.me/) | None | NextJS, NodeJS, Stiches, Vercel | 189 | | Anurag Hazra | ![Anurag Hazra Portfolio](https://user-images.githubusercontent.com/74038190/221430160-5f280f15-ba4d-43a8-ace6-b3162855aea1.png) | [anuraghazra.dev](https://anuraghazra.dev/) | [GitHub](https://github.com/anuraghazra/anuraghazra.github.io) | React, Gatsby, Styled-components, Cypress, Jest, TravisCI | 190 | | Hardik Gohil | ![Hardik Gohil Portfolio](https://user-images.githubusercontent.com/32103022/231819818-4c43ecfa-5b8c-4099-90d2-7c4ca1166395.jpg) | [hardikgohilhlr.tech](https://hardikgohilhlr.tech/) | None | Next.js, TypeScript, Firebase, SCSS | 191 | | Jonathan Toon | ![jonathan toon](https://user-images.githubusercontent.com/53873209/222076260-9536d6e7-91bd-440d-835f-5fa641ce450c.PNG) | [jonathontoon.com](https://jonathontoon.com/) | [Github](https://github.com/jonathontoon/jonathontoon.com) | Gulp, EsBuild, postCSS, Nunjuck | 192 | | Rafael Derolez | ![Rafael Derolez](https://user-images.githubusercontent.com/53873209/222077967-b94c5de3-f8db-4f00-be6a-adc8cf5000dc.PNG) | [derolez.dev](https://derolez.dev/) | None | NextJS, Sanity, ChakraUI, Emotion | 193 | | Chris Williams | ![astro cactus](https://user-images.githubusercontent.com/53873209/222880704-e6062bc7-b19f-4be3-9ee2-2f809885e94d.png) | [astro-theme-cactus.netlify.app](https://astro-theme-cactus.netlify.app/) | [Github](https://github.com/chrismwilliams/astro-theme-cactus) | Astro, Typescript, Tailwind CSS, MDX | 194 | | Ben Holmes | ![ben holmes](https://user-images.githubusercontent.com/53873209/222881198-5e24ac56-2cf0-40e1-aa5a-01a859132dc5.png) | [bholmes.dev](https://bholmes.dev/) | [Github](https://github.com/bholmesdev/bholmesdev) | Gatsby, Javascript, SCSS, Pug | 195 | | Yasio | ![YASIO](https://user-images.githubusercontent.com/48645362/222945475-ce6c07d1-d580-47a5-8372-c66e6ff35e66.png) | [yasio.dev](https://yasio.dev/) | [Github](https://github.com/YasiOnFire) | Nuxt.js, Node.js, core-js, Vue.js, VideoJS, Firebase, HSTS, Open Graph, HTTP/3, Webpack, PWA | 196 | | Alec Babala | ![Alec Babala](https://user-images.githubusercontent.com/48645362/222978718-78e3e74c-66b1-48f6-a39f-2a0f03ac51a5.png) | [alecbabala.com](https://www.alecbabala.com/) | None | Next.js, Node.js, core-js, React, HSTS, Open Graph, Webpack, MobX, GSAP, Contentful | 197 | | Gavin Nelson | ![gavin nelson](https://user-images.githubusercontent.com/53873209/223125102-7b266674-cb3b-4f1c-9562-af09202b35a5.png) | [nelson.co](https://nelson.co/) | [Github](https://github.com/gavinmn/nelson.co) | NextJS, Tailwind CSS, Vercel, MDX | 198 | | Yinka Adedire | ![yinka-kun](https://user-images.githubusercontent.com/53873209/223170581-4c10fd7d-a851-4f6d-8c78-fdd731c2b15c.png) | [yinka.codes](https://www.yinka.codes/) | [Github](https://github.com/yinkakun/yinkakun-portfolio) | Gatsby, ReactJS, Styled-Components | 199 | | Abdullah Abdulfatah | ![draq Abdulfatah](https://user-images.githubusercontent.com/53873209/223174294-72f9c025-92f4-41f2-b7c8-8dfc0b8e216b.png) | [draq.tech](https://www.draq.tech/) | None | NextJS, Typescript, ChakraUI | 200 | | Samuel Imolorhe | ![xdev](https://user-images.githubusercontent.com/53873209/224482950-e2dfbfdd-8d98-4a10-aed6-973fd568d9b4.png) | [xkoji.dev](https://www.xkoji.dev/) | [Github](https://github.com/imolorhe/xkoji-code) | Gatsby, GSAP, JavaScript, Netlify | 201 | | Abu Said | ![developer-portfolio](https://github.com/said7388/portfolio-ideas/assets/77630868/d6276920-ec58-4e7f-ac09-32cd43a3b8ee) | [abusaid.netlify.app](https://abusaid.netlify.app/) | [GitHub](https://github.com/said7388/developer-portfolio) | Next.js, Tailwind CSS, Email.JS | 202 | | Quiet Node | ![quiet-node-portfolio](https://user-images.githubusercontent.com/66233296/226226557-c6afd182-7d14-4ac3-87a5-319c14d599c4.png) | [quiet-node.dev](https://quiet-node.dev) | [GitHub](https://github.com/quiet-node/portfolio-v2) | TypeScript, ReactJS, ViteJS, TailwindCSS, Motion Framer | 203 | | Daniel Wisky | ![Daniel Wisky Portfolio](https://user-images.githubusercontent.com/2626931/227245573-e5751c40-9d59-4b44-b697-e2b28bff4e6a.png) | [danielwisky.com.br](https://danielwisky.com.br/) | [GitHub](https://github.com/danielwisky/danielwisky.github.io) | HTML, CSS, JavaScript | 204 | | JJ Kasper | ![jj kasper screenshot](https://user-images.githubusercontent.com/53873209/228754753-f18a3e24-72a8-4032-955b-ef4a01110846.png) | [jjsweb.site](https://jjsweb.site/) | [Github](https://github.com/ijjk/jjsweb.site) | NextJS, Vercel, CSS | 205 | | Cassidy Williams | ![cassidy screenshot](https://user-images.githubusercontent.com/53873209/228766009-832d7b30-c675-42a8-9a0c-445d8a8be8fb.png) | [cassidoo.co](https://cassidoo.co/) | None | HTML, CSS, JavaScript | 206 | | Jahir Fiquitiva | ![jahir portfolio](https://user-images.githubusercontent.com/53873209/228767619-d48218cd-09d8-4886-a6b0-72e23f77a71e.PNG) | [jahir.dev](https://jahir.dev/) | [Github](https://github.com/jahirfiquitiva/jahir.dev) | Next.js, Tailwind CSS, MDX, contentlayer, PlanetScale, Vercel, TypeScript | 207 | | Stefan Topalovic | ![stefan dev screenshot)](https://user-images.githubusercontent.com/53873209/228772337-5864d089-9c69-41e5-a126-8437a1541811.png) | [stefantopalovicdev.vercel.app](https://stefantopalovicdev.vercel.app/) | None | ReactJS, SCSS, Vercel | 208 | | Abdullah Moiz | ![Abdullah Moiz screenshot)](https://user-images.githubusercontent.com/90745903/229309195-8d735f52-f779-400c-81ff-1384ea227651.png) | [mrmoiz.vercel.app](https://mrmoiz.vercel.app/) | None | Next Js ,Tailwind css, Vercel | 209 | | Victor Williams | ![victor williams screenshot](https://user-images.githubusercontent.com/53873209/230361704-ceb6b270-9148-4518-9578-53681cf49fe2.png) | [victorwilliams.me](https://www.victorwilliams.me/) | [Github](https://github.com/victorcodess/folio-v1) | React, Next.js, TypeScript, TailwindCSS, Framer Motion, GSAP, Vercel | 210 | | Modupe Akanni | ![portfolio](https://user-images.githubusercontent.com/105242931/230619541-50f3b035-2ee2-4925-a453-c35c1985df84.png) | [modupe-akanni.vercel.app](https://modupe-akanni.vercel.app/) | [Github](https://github.com/Goketech/next-p) | React, Next.js, Styled Components, Vercel | 211 | | Anuoluwapo Abolarin | ![anuoluwapo portfolio](https://user-images.githubusercontent.com/53873209/231068477-13d011fc-aac4-466a-8d18-bbcb41a81025.png) | [anuoluwapo.xyz](https://anuoluwapo.xyz/) | [Github](https://github.com/Anu-oluwapo/portfolio-v2) | VueJS, SCSS, GSAP, Vite | 212 | | Andrew Branch | ![Andrew Branch portfolio](https://user-images.githubusercontent.com/53873209/234782793-152ab17e-85de-4e5b-bc52-505e129d8354.png) | [blog.andrewbran.ch](https://blog.andrewbran.ch/) | [Github](https://github.com/andrewbranch/blog) | Gatsby, TypeScript, Emotion, Netlify | 213 | | Max Böck | ![Max Bock](https://user-images.githubusercontent.com/53873209/234786328-5623c880-e5fc-4f47-aa67-e4db5e95f0e6.png) | [mxb.dev](https://mxb.dev/) | [Github](https://github.com/maxboeck/mxb) | Eleventy, SCSS, Nunjucks | 214 | | Shahriar Shafin | ![shafin_portfolio](https://user-images.githubusercontent.com/32214710/234838154-f087f7b0-ed0e-48ba-8602-ef07a25fb87b.png) | [shahriarshafin.github.io](https://shahriarshafin.github.io/) | [Github](https://github.com/shahriarshafin/myportfolio) | React, Next.js, Tailwind CSS | 215 | | Mukul Chugh | ![Mukul Chugh](https://user-images.githubusercontent.com/53873209/234845892-15d64c4c-21f5-4f19-be5e-08229faadf93.png) | [mukulchugh.com](https://mukulchugh.com/) | None | React, Next.js, Styled Components, Netlify | 216 | | Vijay Verma | ![realvjy](https://user-images.githubusercontent.com/53873209/236575661-f156aa7c-fb93-4c16-8d48-11a60e263fb3.png) | [vjy.me](https://vjy.me/) | None | NextJS, Styled Components, Vercel | 217 | | Jhey Tompkins | ![jhey tompkins](https://user-images.githubusercontent.com/53873209/236577676-9fcbcb5e-2302-4614-b16e-2fdd6743c4b7.png) | [jhey.dev](https://jhey.dev/) | [Github](https://github.com/jh3y/jhey.dev) | Sanity, Astro, Tailwind CSS, Netlify | 218 | | David Heckhoff | ![David Heckoff portfolio](https://user-images.githubusercontent.com/53873209/236579586-63860bd8-5273-4005-818d-1b7e72b5d578.png) | [david-hckh.com/](https://david-hckh.com/) | None | HTML, CSS, JavaScript, ThreeJS, GSAP, PWA, Howler.js | 219 | | Ashish | ![Ashish portfolio](https://user-images.githubusercontent.com/53873209/236580922-4da135d0-086d-4411-bfbf-60e573dbcb53.png) | [asrvd.me](https://asrvd.me/) | [Github](https://github.com/asrvd/asrvd.me) | Next.js, tRPC, Tailwind CSS, TypeScript, NextAuth.js, Prisma | 220 | | Robb Owen | ![Robb Owen screenshot](https://github.com/Evavic44/portfolio-ideas/assets/53873209/b108472d-0197-45fb-be95-7e19a9a77a90) | [robbowen.digital](https://robbowen.digital/) | None | HTML, CSS, JavaScript, Netlify | 221 | | Josh Comeau | ![Josh Comeau](https://github.com/Evavic44/portfolio-ideas/assets/53873209/dacfef81-f090-4f54-885f-c8baec247351) | [joshwcomeau.com](https://www.joshwcomeau.com/) | None | NextJS, Styled Components, MDX, MongoDB, Framer Motion, React Spring, Vercel | 222 | | Charles Bruyerre | ![Sharlee portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/d62f4726-71cf-4e7f-8b57-31f30309e89d) | [itssharl.ee](https://itssharl.ee/) | None | NextJS, ThreeJS, PWA, Vercel | 223 | | Patrick David | ![Patrick David portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/e3d9c014-7064-46fa-ab0b-73dce47a5490) | [bepatrickdavid.com](https://bepatrickdavid.com/) | None | HTML, CSS, JavaScript, jQuery, Plesk, ThreeJS, GSAP, PWA | 224 | | Seán Halpin | ![sean halpin portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/87669b84-c2c0-4418-9dac-8f471b1e327f) | [seanhalpin.xyz](https://www.seanhalpin.xyz/) | None | Svelte, SvelteKit, Vite, PWA, Node.js | 225 | | Cyd Stumpel | ![cyd stumpel portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/2aac0726-8864-40ab-badc-d465e79e1060) | [cydstumpel.nl](https://cydstumpel.nl/) | None | WordPress, PHP, ThreeJS, MySQL, GSAP, Lenis | 226 | | Tamal Sen | ![tamal sen portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/45c9a3bd-0168-418e-9119-5b5af0d4b01c) | [tamalsen.dev](https://tamalsen.dev/) | None | WordPress, Elementor, PHP, MySQL, Anime.js | 227 | | Aristide Benoist | ![Aristide Benoist portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/f7a0669a-0ca9-45ba-b767-1eef42fa2eef) | [aristidebenoist.com](https://aristidebenoist.com/) | None | PHP, JavaScript, WebGL, AWS | 228 | | Abhishek Jha | ![Abhishek Jha portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/b7b78e82-233e-4ff7-ad1a-f38c96d3bf25) | [abhishekjha.me](https://abhishekjha.me/) | None | HTML, CSS, JavaScript, GSAP, Varnish, Locomotive Scroll, Github Pages | 229 | | Robin Mastromarino | ![robin mastromarino portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/02b5bb02-d918-4770-bc69-eb904a5ea436) | [robinmastromarino.com](http://robinmastromarino.com/) | None | HTML, CSS, JavaScript, WebGL, GSAP, Google Analytics | 230 | | Lanre Adelowo | ![lanre adelowo portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/53ea111b-7425-41b1-94bf-818dbfbbccfa) | [lanre.wtf](https://lanre.wtf/) | None | NextJS, CSS Modules, GSAP, Vercel, Hugo | 231 | | Prince Muhammad | ![prince muhammed portfolio](https://github.com/priincemuhammad/portfolio-ideas/assets/53873209/edcfcbca-7f71-4ec8-ae23-ee4ce0b1960e) | [princemuhammad.pro](https://princemuhammad.pro) | None | JavaScript, React.js, Next.js, TailwindCSS | 232 | | Victor Adeniji | ![Victor Adeniji portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/b7a9401f-de19-457a-8819-5a5b447ff7f0) | [codevickk.com](https://codevickk.com/) | None | Nuxt.js, Vue.js, GSAP, Netlify, Lenis | 233 | | Kaung Myat Kyaw | ![Kaung_Myat_Kyaw_portfolio](https://github.com/Evavic44/portfolio-ideas/assets/111948881/e6ba8f70-9b7c-41f6-889f-3af1255186ac) | [barry121.com](https://barry121.vercel.app/) | [Github](https://github.com/Rhaegar121/Portfolio) | ReactJS, ThreeJS, TailwindCSS | 234 | | Eliaz LR | ![Eliaz LR portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/e41e2220-1b2e-48c1-ae91-2ab341d5c643) | [eliaz-lr.dev](https://eliaz-lr.dev/) | [Github](https://github.com/Eliaz-LR/portfolio-v3) | Astro, TailwindCSS, Vue, DaisyUI | 235 | | Danny Johnson | ![Mr Danny Johnson's portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/ae9e69b5-4ced-44d4-9cdc-0e5a53d139b1) | [mrdannyjohnson.co.uk](https://www.mrdannyjohnson.co.uk/) | None | Astro, Vue, Sanity, Tailwind CSS | 236 | | Wahid Ali | ![Wahid Ali portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/e91365c8-2150-4198-8222-6a2cd69bbae4) | [https://www.wahidali.dev](https://www.wahidali.dev/) | [Github](https://github.com/Aliwahid17/portfolio) | Svelte, Tailwind CSS, TypeScript, Vercel | 237 | | Deepanshu Mehra | ![Deepanshu Mehra portfolio](https://github.com/Evavic44/portfolio-ideas/assets/99004662/7285c0e2-1929-467a-aba6-324e007a1289) | [deeshu2002.github.io/folio](https://deeshu2002.github.io/folio) | [Github](https://github.com/deeshu2002/folio) | HTML, CSS, TypeScript, Vite, PWA | 238 | | Brian Lovin | ![Brian Lovin portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/343a246e-625b-4bb4-b637-5d905ce8d5cc) | [brianlovin.com](https://brianlovin.com/) | [Github](https://github.com/brianlovin/briOS) | NextJS, TypeScript, Tailwind CSS, Prisma, Planetscale | 239 | | Pritish Samal | ![Pritish Samal portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/5d0aac86-0fbc-46ac-8020-655b2f60b544) | [pritishsamal.com](https://pritishsamal.com/) | [Github](https://github.com/CIPHERTron/portfolio-v2) | Next.js, TypeScript, Emotion, Chakra UI | 240 | | Sandeep Kumar | ![Sandeep Kumar portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/5a58f6df-2240-42ca-b5d5-b96f0d0180fd) | [eternalfrustation.github.io](https://eternalfrustation.github.io/) | [Github](https://github.com/eternalfrustation/eternalfrustation.github.io) | HTML, CSS, JavaScript | 241 | | Mike Liu | ![Mike Liu portfolio](https://github.com/mikeliuu/portfolio-ideas/assets/62628408/58e8d844-6532-4d73-9627-336fc2a01bbb) | [mikeliuu.com](https://mikeliuu.com) | [Github](https://github.com/mikeliuu/mikeliuu.com) | NextJS, TypeScript, Tailwind CSS, HTML, CSS, Vercel | 242 | | Bryan Smith | ![personal](https://github.com/multikitty/portfolio-ideas/assets/124760226/01f1ef98-e12c-4a96-9858-4f8d51197bb1) | [multikitty.onrender.com](https://multikitty.onrender.com) | [Github](https://github.com/multikitty/multikitty.github.io) | HTML, CSS, JavaScript | 243 | | Goodness Urama | ![Goodness -- Frontend Developer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/d492f655-73eb-4872-867e-b34e3661e558) | [goodie.work](https://www.goodie.work/) | [Github](https://github.com/GoodyBoy301/goodie.work) | Pug, SCSS, Javascript ThreeJS, GSAP, Vercel | 244 | | Zai Santillan | ![Zai Santillan Portfolio](https://github.com/plskz/portfolio-ideas/assets/57343545/4103d08e-5bf9-43a5-a9fa-ce71a23dd213) | [plskz-me.vercel.app](https://plskz-me.vercel.app/) | [Github](https://github.com/plskz/plskz.me) | NextJS, TypeScript, Tailwind CSS, DaisyUI | 245 | | Ashutosh Hathidara | ![Ashutosh Hathidara Portfolio](https://iili.io/HsLAPxS.png) | [ashutoshhathidara.com](https://ashutoshhathidara.com/#/) | [Github](https://github.com/ashutosh1919/masterPortfolio) | HTML5, CSS3, React, NextJS | 246 | | Syed Moshin | ![Syed Mohsin's Portfolio template](https://github.com/Evavic44/portfolio-ideas/assets/53873209/de551710-fc61-48d2-bf70-e8188fa50ef7) | [opensource-portfolio.netlify.app](https://opensource-portfolio.netlify.app/) | [Github](https://github.com/devsyedmohsin/portfolio-template) | HTML5, CSS3, JavaScript | 247 | | David Angulo | ![David Angulo - Software Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/8a822da5-d22a-4515-9182-ba76d8a56d9a) | [davidangulo.xyz](https://www.davidangulo.xyz/) | [Github](https://github.com/dcangulo/davidangulo.xyz) | HTML, Jekyl, Ruby, Bootstrap | 248 | | George Christeas | ![George Christeas - Full-Stack Software Developer](https://github.com/Evavic44/portfolio-ideas/assets/61952924/282461b4-b8e6-4c12-8143-97a6cd0b7973) | [chr-ge.com](https://chr-ge.com/) | [Github](https://github.com/chr-ge/chr-ge.com) | Next.js, Typescript, ChakraUI, Vercel | 249 | | Julien Thême | ![Julien THÊME's portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/cef888f0-0685-4a4b-9b2c-954c44d251d6) | [julien-theme.dev](https://julien-theme.dev/) | [Github](https://github.com/ZIRTR0X/PersonalWebsite) | Angular, TailwindCSS, ThreeJs | 250 | | Shubh Porwal | ![Shubh Porwal portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/767d8333-d3a1-4d77-bb7f-c280fad725e2) | [shubhporwal.me](https://www.shubhporwal.me/) | [Github](https://github.com/shubh73/devfolio) | NextJS, ReactJS, Tailwind CSS, GSAP | 251 | | Ross Moody | ![Ross Moody portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/7e3433b9-ea01-49dc-b425-80aeead6020e) | [rossmoody.com](https://rossmoody.com/) | [Github](https://github.com/rossmoody/rossmoody.com) | Next.js, Chakra UI, TypeScript, MDX, Netlify | 252 | | Rémy Beumier | ![Rémy Beumier Front-end Developer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/edac77d4-f8a1-4eee-a5ee-7d4d1b2e77fa) | [remybeumier.be](https://remybeumier.be/) | [Github](https://github.com/beumsk/beumsk.github.io) | Next.js, Sass, MDX, AOS | 253 | | Anirban Das | ![Anirban Das - Fullstack Developer UX Designer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/064f34ec-f7d3-4ede-814f-7f3db6c6e5ea) | [anirbandas.in](https://www.anirbandas.in/) | [Github](https://github.com/anirban12d/portfolio-2023) | Qwik, React, Tailwind CSS | 254 | | Rafael Santana | ![Rafael Santana-screenshot](https://github.com/Evavic44/portfolio-ideas/assets/53873209/2012a0e7-39b8-4b0e-8b60-238d0adbe70a) | [rafaelsantana.dev](https://www.rafaelsantana.dev/) | [Github](https://github.com/rafalmeida73/portfolio) | Next.js, Material UI, TypeScript | 255 | | Apoorv Maurya | ![Apoorv Maurya Portfolio](https://iili.io/HZQmPrg.png) | [apoorv.onrender.com](https://apoorv.onrender.com) | [Github](https://github.com/apoorvmaurya/portfolio) | HTML, CSS, JavaScript, | 256 | | Sumonta Saha Mridul | ![sumonta](https://github.com/Sumonta056/portfolio-ideas/assets/61287791/6d35e046-87a0-45d3-84bd-7bcef01457c4) | [sumonta056.github.io](https://sumonta056.github.io/) | [Github](https://github.com/Sumonta056/sumonta056.github.io) | HTML5, CSS3, JavaScript | 257 | | Daniel Coyula | ![daniel-coyula](https://github.com/Evavic44/portfolio-ideas/assets/62628408/9c699df8-ce14-424d-9487-89e669e04470) | [portfolio.dctech.dev](https://portfolio.dctech.dev/) | None | Flutter | 258 | | Shaan Alam | ![Shaan Alam](https://github.com/Evavic44/portfolio-ideas/assets/48273777/3bad2960-691a-4e17-bdd4-cc23420ee616) | [shaanalam.vercel.app](https://shaanalam.vercel.app) | [GitHub](https://github.com/shaan-alam/shaanalam) | NextJS, Tailwind, TypeScript & Hygraph | 259 | | Gregory Koberger | ![Gregory Koberger](https://github.com/Evavic44/portfolio-ideas/assets/53873209/00d7480e-215d-4bb4-b908-9640bb0d4066) | [gkoberger.com](https://gkoberger.com/) | None | VueJS, GSAP, NodeJS, Express | 260 | | Monica Powell | ![monica_dev](https://github.com/Evavic44/portfolio-ideas/assets/53873209/496ec2ba-bf6a-4e70-8429-b8bef5b8620d) | [aboutmonica.com](https://aboutmonica.com/) | None | Gatsby, Emotion, Netlify | 261 | | Ismoilbek Ilxomov | ![Ismoil - Software Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/b971f784-3ee4-4462-9084-079a396e64de) | [ismail.uz](https://ismail.uz/) | None | NextJS, TailwindCSS, Netlify | 262 | | Kehinde Omopariola | ![Pariola - Creative Frontend Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/26b59251-71ba-483a-9d52-b7676785f502) | [pariola.dev](https://www.pariola.dev) | [Github](https://github.com/Pariola-droid/pariola-v2.2.0) | NextJS, Typescript, SASS, Motion One | 263 | | Shivam Gupta | ![Shivam's portfolio](https://github.com/Evavic44/portfolio-ideas/assets/109647722/6e85696e-5729-48a9-a7db-bd849d6e2a8c) | [the-shivam-gupta.github.io](https://the-shivam-gupta.github.io/) | [Github](https://github.com/the-shivam-gupta/the-shivam-gupta.github.io) | HTML, CSS, JS | 264 | | Mateus Felipe Gonçalves | ![mateusf.com_screenshot](https://github.com/Evavic44/portfolio-ideas/assets/40613276/b357a709-a2ce-49bc-a056-e5f74c99fb1f) | [mateusf.com](https://mateusf.com) | [Github](https://github.com/mateusfg7/mateusf.com) | Next.js, Typescript, Tailwindcss, Giscus, Contentlayer & MDX | 265 | | Anubhav Sigdel | ![Anubhav's portfolio](https://github.com/asigdel29/portfolio-ideas/assets/64096825/c13fc47d-e691-463d-8936-632e0af9baf9) | [anubhavsigdel.vercel.app](https://anubhavsigdel.vercel.app/) | [GitHub](https://github.com/asigdel29/portfolio) | HTML, CSS, JS | 266 | | Krish Depani | ![Krish-PortFolio](https://github.com/Krish-Depani/portfolio-ideas/assets/72994417/d7790172-3d17-4fdb-8e52-2ec5daed7c3c) | [krish-depani.vercel.app](https://krish-depani.vercel.app/) | [GitHub](https://github.com/Krish-Depani/Portfolio-Website) | HTML & CSS | 267 | | Bona Brian Siagian | ![bonabrian com](https://github.com/Evavic44/portfolio-ideas/assets/14372275/4a43c677-feaf-42e1-a606-b4b5aef7e1c2) | [bonabrian.com](https://bonabrian.com) | [GitHub](https://github.com/bonabrian/bonabrian.com) | Typescript, NextJs, TailwindCSS, Prisma, Contentlayer | 268 | | SofiDev | ![sofidev__portada](https://github.com/SofiDevO/portfolio-ideas/assets/102200061/8bf597fe-dda0-441d-825e-fdb3c4b8bacd) | [itssofi.dev](https://itssofi.dev/) | [GitHub](https://github.com/SofiDevO/sofidev-portfolio-astro) | Astro, CSS, Javascript, React | 269 | | Sadee | ![vCard-Personal-Portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/d63c7678-8a69-414a-95a9-05d59d76d231) | [codewithsadee.github.io/vcard-personal-portfolio](https://codewithsadee.github.io/vcard-personal-portfolio/) | [Github](https://github.com/codewithsadee/vcard-personal-portfolio) | HTML, CSS, JavaScript | 270 | | Emmanuel Nsikan-david | ![nsikandavid.dev screenshot](https://iili.io/Jq54yTF.png) | [nsikandavid.dev](https://nsikandavid.dev) | None | ReactJS, CSS | 271 | | Cruip | ![cruip-portfolio](https://github.com/Evavic44/portfolio-ideas/assets/62628408/11ba04d1-5562-464c-aa80-3089902dc9c7) | [preview.cruip.com](https://preview.cruip.com/devspace/) | None | Alpine.JS, Tailwind CSS, Chartjs | 272 | | Dev Khandelwal | ![devfolio](https://github.com/Evavic44/portfolio-ideas/assets/122960451/1c885444-a588-4ed1-87ab-19e4bb6c05ab) | [slyro.vercel.app](https://slyro.vercel.app/) | [GitHub](https://github.com/khandelwaldev/dev) | Next.JS, Tailwind CSS, MDX | 273 | | Skifli | ![Skifli portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/c0e4d617-3285-4ae5-bc8e-ec73b007a00f) | [skifli.github.io](https://skifli.github.io/) | [GitHub](https://github.com/skifli/skifli.github.io) | HTML, CSS, JavaScript | 274 | | Eva Decker | ![Eva Decker Portfolio](https://github.com/Evavic44/portfolio-ideas/assets/4117920/466f86cd-ae24-454f-924b-5af6d419b5f6) | [evadecker.com](https://evadecker.com) | [GitHub](https://github.com/evadecker/evadecker.com) | Astro, React, TypeScript, Framer Motion | 275 | | Guglielmo Cerri | ![Guglielmo Cerri - Data Scientist and Bioinformatician](https://github.com/Evavic44/portfolio-ideas/assets/53873209/ec76028c-0487-4a40-9919-5bded7b391f7) | [guglielmocerri.github.io](https://guglielmocerri.github.io) | [GitHub](https://github.com/GuglielmoCerri/GuglielmoCerri.github.io) | HTML, CSS, JavaScript, reCAPTCHA | 276 | | Wisnu Wicaksono | ![Wiscaksono portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/462f6725-9c96-4d0f-be1c-ce27d9c782ad) | [wiscaksono.com](https://wiscaksono.com/) | [GitHub](https://github.com/wiscaksono/wiscaksono-site) | Nextjs, Tailwind CSS, MDX, Next Auth | 277 | | Emmanuel Alabi | ![Emmanuel Alabi portfolio](https://github.com/Evavic44/portfolio-ideas/assets/49512755/c9a8959f-487c-4ad0-8003-27ed52aa00ed) | [emmanuelalabi.vercel.app](https://emmanuelalabi.vercel.app/) | None | HTML, TailwindCSS | 278 | | Zaher Al Majed | ![Zaher Al Majed-compressed](https://github.com/Evavic44/portfolio-ideas/assets/53873209/1b1b4e1f-ad4f-4815-9449-8bd0d71570d2) | [zaher.design](https://zaher.design/) | None | React, TypeScript, NextJS, TailwindCSS | 279 | | Shivani Yadav | ![shivani-portfolio-compressed](https://github.com/ShivaniYadav07/portfolio-ideas/assets/134120753/b816ca70-c4b8-4e32-8c82-1b7cf2f03295) | [shivaniyadav.online](https://shivaniyadav.online) | [GitHub](https://github.com/ShivaniYadav07/Portfolio) | React, TypeScript, ParticleJS, Hostinger, SCSS | 280 | | Matthias Kretschmann | ![matthias kretschmann portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/69ad4ade-73e3-4dd5-bacd-ad4c326a1d08) | [matthiaskretschmann.com](https://matthiaskretschmann.com/) | [GitHub](https://github.com/kremalicious/portfolio) | NextJS, TypeScript, CSS Modules, Vercel | 281 | | Le Vinh Khang | ![Le Vinh Khang portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/563a8446-1886-41d1-8954-999023d3d7b7) | [levinhkhang.org](https://levinhkhang.org/) | [GitHub](https://github.com/levinhkhangzz/personal-website) | NextJS, TailwindCSS, React | 282 | | Ali Imam | ![Ali Imam portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/e83f0004-b7c9-4a50-9c79-e2299e5fa864) | [aliimam.in](https://www.aliimam.in/) | [GitHub](https://github.com/aliimam-in/aliimam) | NextJS, TailwindCSS, React, Lenis | 283 | | Ahmed Amer | ![Tammura homepage](https://github.com/Evavic44/portfolio-ideas/assets/53873209/f4f03d80-b602-4598-bb52-659f49ea2fc1) | [tammura.com](https://tammura.com/) | None | NextJS, TailwindCSS, Vercel, Cloudflare | 284 | | Alpay Celik | ![Alpay Celik homepage](https://raw.githubusercontent.com/AlpayC/portfolio_site/main/fullpage.png) | [alpaycelik.dev](https://alpaycelik.dev/) | [GitHub](https://github.com/AlpayC/portfolio_site) | NextJS, TailwindCSS, Typescript, Framer Motion, Swiper, Vercel, NodeMailer | 285 | | Hanaia Youcef | ![poysa_portfolio](https://github.com/Evavic44/portfolio-ideas/assets/96303710/09a844b7-ec18-4ce7-97b9-a9fa17a6f4d2) | [poysa213.me](https://poysa213.me/) | [GitHub](https://github.com/poysa213/portfolio) | Typescript, NextJS, TailwindCSS, Framer Motion | 286 | | Jaber Said | ![jaber](https://github.com/Jaber-Saed/portfolio-ideas/assets/92320333/840a4a26-325f-44ca-b6b6-01c348f046b1) | [jaber.dev](https://jaber.dev) | [GitHub](https://github.com/Jaber-Saed/3d-protfoluo) | React JS, Tailwind CSS, Three JS | 287 | | Xiaohan Zou | ![light=portfolio-compressed](https://github.com/RahulKRaj7/portfolio-ideas/assets/113328473/689fec1a-dd19-42d5-986c-965a8893d9cd) | [portfoio.zxh.me](https://portfolio.zxh.me/) | [GitHub](https://github.com/Renovamen/playground-macos) | React JS, Zustand, UnoCSS, Typescript, Vite | 288 | | Manh Hung Dao | ![age-of-23.vercel.app](https://github.com/Evavic44/portfolio-ideas/assets/81293286/c5993193-de95-4289-bba6-ba47e30a9c7f) | [age-of-23.vercel](https://age-of-23.vercel.app/) | [GitHub](https://github.com/mahhung12/AgeOf23) | Nextjs, MDX, Tailwind CSS, TypeScript, JavaScript | 289 | | CuB3y0nd | ![CuB3y0nd portfolio](https://github.com/Evavic44/portfolio-ideas/assets/91041570/fce4f9d4-80d9-48b3-b439-bade2f671d95) | [cubeyond.net](https://cubeyond.net) | [GitHub](https://github.com/CuB3y0nd/cubeyond.net) | Nextjs, MDX, Tailwind CSS, TypeScript | 290 | | Baraa Alshaer | ![Screenshot 2024-02-12 171202](https://github.com/Evavic44/portfolio-ideas/assets/89737291/32e7df8d-9c05-4110-9716-abe98699fa56) | [alshaer.vercel.app](https://alshaer.vercel.app/) | [GitHub](https://github.com/balshaer/alshaer) | React JS, Typescript, Shadcn ui , Tailwind CSS | 291 | | Sameera Sandakelum | ![Screenshot 2024-02-13 at 2-compressed](https://github.com/sameerasw/portfolio-ideas/assets/68902530/795476a2-f048-49d9-9ce1-74e5abfa9269) | [sameerasw.com](https://sameerasw.com/) | [GitHub](https://github.com/sameerasw/sameerasw.com) | HTML, CSS, Javascript, Netlify | 292 | | Jam Moonbami | ![moonbamiofficial vercel app](https://github.com/MoonbamiOfficial/portfolio-ideas/assets/141120384/bba11386-7807-486d-95e2-39eee7bb89fd) | [moonbamiofficial.vercel.app](https://moonbamiofficial.vercel.app) | [GitHub](https://github.com/MoonbamiOfficial/dev-portfolio) | Next.js, Node.js, React, Tailwind CSS, MongoDB, Vercel | 293 | | Asharib Ali | ![cv](https://github.com/Evavic44/portfolio-ideas/assets/102221198/c08ac4bc-f5d9-4115-89c9-e31f244428e2) | [cv.asharib.xyz](https://cv.asharib.xyz/) | [GitHub](https://github.com/AsharibAli/cv) | Next.js, React, Typescript, Shadcn/ui, Tailwind CSS, Vercel | 294 | | MAHG | ![MAHG V2 - Portfolio](https://github.com/mahg0899/portfolio-ideas/assets/46274461/dfcd679a-924a-4a96-b513-a374790ff8ab) | [mahg.me](https://mahg.me) | [GitHub](https://github.com/mahg0899/mahgv2) | NextJS, React, Typescript, TailwindCSS, Vercel | 295 | | Sunidhi Singh | ![Sunidhi - Portfolio](https://github.com/Evavic44/portfolio-ideas/assets/62628408/8834605e-e1b1-47a9-8fea-ad6886ded87e) | [sunidhi-singh.netlify.app](https://sunidhi-singh.netlify.app/) | [GitHub](https://github.com/sunidhi014) | HTML, CSS, JavaScript | 296 | | Dhairya Majmudar | ![Dhairya Majmudar](https://github.com/DhairyaMajmudar/portfolio-ideas/assets/124715224/51942f9f-adc8-43e9-ae02-c0009ca3ea4f) | [https://dhaiyra-majmudar.netlify.app](https://dhaiyra-majmudar.netlify.app) | [Github](https://github.com/DhairyaMajmudar/Personal-Portfolio) | React, Tailwind , Material UI | 297 | | Jay Bhavsar | ![Jay Bhavsar](https://github.com/jbhv12/portfolio-ideas/assets/12010616/2fa35af8-eb56-4731-afb5-678c93c1b77d) | [https://jay.is-savvy.dev](https://jay.is-savvy.dev) | [Github](https://github.com/jbhv12/portfolio) | Vue, Gridsome, Tailwind CSS | 298 | | Siyana Zdravkova | ![Siyana Zdravkova](https://github.com/Evavic44/portfolio-ideas/assets/52591976/7d91285a-0e1e-4f2c-8c59-c0c33ce61092) | [professionalportfolio](https://bluebutterflies.github.io/professionalportfolio/) | [Github](https://github.com/BlueButterflies/professionalportfolio) | Javascript, JSON, React JS, Bootstrap, Tachyons, animate.css, Tspracticles | 299 | | Anshul Gora | ![Anshul's Portfolio](https://github.com/Evavic44/portfolio-ideas/assets/75837854/35c37ffc-3ad2-4a76-823e-b4d5158306db) | [anshulwork.netlify.app](https://anshulwork.netlify.app/) | None | ReactJs, Bootstrap, Vanilla CSS, Javascript | 300 | | Dogan Merden | ![doganmerden](https://github.com/adambornrepo/portfolio-ideas/assets/121860189/17eb33c3-27a1-409a-8342-9ff9d38e25ca) | [doganmerden.vercel.app](https://doganmerden.vercel.app/) | None | Next.js, TypeScript, Tailwind CSS, AuthJs, next-intl, Daisy UI, framer-motion | 301 | | Ibrahim Sadik Tamim | ![screenshot-compressed](https://tam11a.dev/screenshot-compressed.png) | [tam11a.dev](https://tam11a.dev) | [GitHub](https://github.com/tam11a/tam11a.dev) | NextJS, TypeScript, TailwindCSS, Framer, GSAP | 302 | | Dipesh Murmu | ![Dipesh Murmu _ Tallstack Developer](https://github.com/user-attachments/assets/33675b3c-19bb-44d4-9218-7180d66b1184) | [dipeshmurmu.com.np](https://dipeshmurmu.com.np/) | None | Tailwind, Alpine, Laravel, Livewire | 303 | | Akshay kumar | ![akshaykumar](https://github.com/akshaytalanki19/portfolio-ideas/assets/110332292/4598f249-9847-4f7e-87ca-05f8f864dce1) | [akshaytalanki19.com](https://akshaytalanki.netlify.app/) | [GitHub](https://github.com/akshaytalanki19/portfolio) | Html, CSS, JavaScript | 304 | | Pieter-Jan Scheir | ![pieterjanscheir](https://github.com/Evavic44/portfolio-ideas/assets/56866152/a2389222-c8f0-4c0f-ae10-472cd7b6f5a0) | [pieterjanscheir.com](https://www.pieterjanscheir.com/) | None | React/Next.js, Typescript, Tailwindcss, Vercel, Lucide | 305 | | Huy Nguyen | ![Huy Nguyen — Freelance Web Developer, Designer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/1ebb8e46-9ae2-46fb-a151-190cc1bfdf23) | [huyng.xyz](https://www.huyng.xyz/) | None | React.js, TailwindCSS, GSAP, Lenis | 306 | | Anshul Soni | ![image](https://github.com/anshulsoni2010/adding-my-portfolio-ideas/assets/102960277/875d5d3d-d235-422a-ab52-abe2d5f73f2e) | [anshulsoni.in](https://www.anshulsoni.in/) | [GitHub](https://github.com/anshulsoni2010/portfolio-website) | HTML, CSS, JavaScript, Other Libraries | 307 | | David Simoes | ![davesimoes](https://github.com/DaveSimoes/portfolio-ideas/assets/109705197/f4ba1b4c-bf4b-4104-addd-b5cecde3cb94) | [davesimoesportfolio.netlify.app](https://davesimoesportfolio.netlify.app/) | [GitHub](https://github.com/DaveSimoes/Developer.Portfolio) | HTML, CSS, JavaScript | 308 | | Saahil Dutta | ![saahild](https://github.com/Evavic44/portfolio-ideas/assets/58448036/aad39399-a3cf-447c-94e9-6b547dbb2fcb) | [saahild.com](https://saahild.com/) | [GitHub](https://github.com/NeonGamerBot-QK/saahild.com) | Reactjs | 309 | | Moshood Sanusi | ![Moshood Sanusi - React JS Frontend Developer _ Portfolio](https://github.com/Evavic44/portfolio-ideas/assets/53873209/67eba3f4-2e1c-423f-a486-34975df32aaa) | [olawale.dev](https://www.olawale.dev/) | None | ReactJS, TailwindCSS, GSAP | 310 | | MD Affan Asghar | ![Affan - Developer Portfolio-compressed](https://github.com/Evavic44/portfolio-ideas/assets/53873209/8f59ccd6-19c0-4405-89aa-0885b38a39f0) | [affancoder.github.io/Portfolio_Website](https://affancoder.github.io/Portfolio_Website/) | [GitHub](https://github.com/affancoder/Portfolio_Website) | HTML, CSS, JavaScript | 311 | | DEBAJYOTI GHOSH | ![debajyoti-cover](https://github.com/DGRYZER/portfolio-ideas/assets/62628408/aff74380-321d-4a21-999f-361903e3d647) | [convolexa-2503.web.app](https://convolexa-2503.web.app/) | None | React JS | 312 | | Muhammad Naeem Tahir | ![image](https://github.com/muhammadnaeemtahir/portfolio-ideas/assets/95528641/f38155ca-b531-45e4-b9f4-f89882d1efee) | [muhammadnaeemtahir.github.io](https://muhammadnaeemtahir.github.io/) | [GitHub](https://github.com/muhammadnaeemtahir/muhammadnaeemtahir.github.io) | HTML, CSS, JavaScript, Bootstrap | 313 | | Aravind Ashokan | ![cover](https://github.com/code-lover636/portfolio-ideas/assets/77882744/3fc8e8fd-be7d-49c5-aa7e-05bd5b77947c) | [aravindashokan.tech](https://aravindashokan.tech) | [GitHub](https://github.com/code-lover636/aravindashokan) | ReactJS, CSS(SASS), Framer Motion, SwiperJS, EmailJS | 314 | | Moinak Majumdar | ![moinak05](https://github.com/Moinak-Majumdar/portfolio-ideas/assets/99950805/4949bcb5-6712-45a2-9e10-6f458ffb1fb6) | [moinak05.portfolio](https://moinak05.vercel.app/) | [GitHub](https://github.com/Moinak-Majumdar/portfolio) | Next.js, TypeScript, Framer Motion, TailwindCss | 315 | | Saleh Salehizadeh | ![Portfolio](https://github.com/SirSaleh/portfolio-ideas/assets/7755345/a74dc18f-5739-4673-bb47-2b0c408059d9) | [SirSaleh.github.io](https://sirsaleh.github.io/Portfolio/) | [GitHub](https://github.com/SirSaleh/Portfolio) | Nextjs, Tailwind CSS, TypeScript | 316 | | Vijay Kumar Reddy Talakola | ![Portfolio](https://github.com/VijayKumarReddyTalakola/portfolio-ideas/assets/109469574/c75a54c9-4f3b-47a3-920b-3da9f82ccb1c) | [talakolavijay.vercel.app](https://talakolavijay.vercel.app/) | [GitHub](https://github.com/VijayKumarReddyTalakola/MyPortFolio) | Reactjs, Tailwind CSS, AOS | 317 | | Nisarg Kavi | ![Nisarg Kavi _ Software Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/219370ad-c82b-43bc-a319-35d00dcf9b61) | [nisargkavi.in](https://www.nisargkavi.in/) | None | Nextjs, Tailwind CSS, Framer Motion, AnimeJS | 318 | | Malik Naik | ![Malik Naik _ Full Stack Engineer](https://github.com/Evavic44/portfolio-ideas/assets/53873209/1724a180-1647-42cd-977e-161d8ed94418) | [maliknaik.me](https://www.maliknaik.me/) | None | HTML, CSS, Bootstrap, and JavaScript | 319 | | Kshitij Gehlot | ![Kshitij_SDE](https://github.com/KDGehlot2003/portfolio-ideas/assets/97123008/0dadbdb3-2d5b-42dc-8c6f-5af25bc94fcb) | [KDGehlot2003.github.io](https://kdgehlot2003.github.io/Portfolio/) | [GitHub](https://github.com/KDGehlot2003/Portfolio) | HTML, CSS, Bootstrap, and JavaScript | 320 | | Johnson Takashi | ![Johnson Takashi Blochchain Developer](https://github.com/Evavic44/portfolio-ideas/assets/136550624/7a307c24-fa55-44b5-bcc2-c8997bb0f210) | [johnson-takashi-blockchain.web.app](https://johnson-takashi-blockchain.web.app/) | [GitHub](https://github.com/John-T45/John-T45.github.io) | HTML, CSS, Bootstrap, and JavaScript | 321 | | Shivaraj Kolekar | ![Shivaraj-kolekar](https://github.com/Shivaraj-Kolekar/portfolio-ideas/assets/87165724/c838dc19-b23e-413b-83ae-e43211e87a5f) | [shivarajkolekar.com](https://shivaraj-portfolio.vercel.app/) | [Github](https://github.com/Shivaraj-Kolekar/portfolio) | HTML, TailwindCSS, Javascript | 322 | | Shubham Gaur | ![Shubham Gaur Minimalist Engineer](https://i.ibb.co/5hmF1ch/Screenshot-2024-06-27-124604.png) | [shubhamessier.github.io](https://shubhamessier.github.io/portfolio) | [GitHub](https://github.com/shubhamessier/portfolio) | HTML, CSS and JavaScript | 323 | | Atijosan Iyanuoluwa | ![protfolio](https://github.com/Evavic44/portfolio-ideas/assets/108562866/2421d6e6-0053-4714-8009-ffa90223353a) | [iyanu-codes-v1.vercel.app](https://iyanu-codes-v1.vercel.app/) | [GitHub](https://github.com/Iyanu1396) | REACTJS, TALWINDCSS and Other Libraries | 324 | | Mahmoud Ibrahim | ![mahmoudibrahim.me](https://github.com/mahmoudgx/portfolio-ideas/assets/21027024/bac949d7-b209-424c-ace6-a57d067509c1) | [mahmoudibrahim.me](https://mahmoudibrahim.me) | None | React, Strapi, Bootstrap, TypeScript, Netlify | 325 | | Archit Agrawal | ![Archit_Portfolio](https://github.com/user-attachments/assets/5915dab8-54cb-43b8-b847-b96bff570409) | [archit-agrawal-portfolio.vercel.app](https://archit-agrawal-portfolio.vercel.app/) | [GitHub](https://github.com/ArchitAgrawal25/Portfolio) | HTML, CSS and JavaScript | 326 | | Vaishnavi Shelke | ![VS-Portfolio](https://github.com/user-attachments/assets/e8213586-99b9-435a-ac9f-7335fc3dcae3) | [vsp-portfolio.netlify.app](https://vsp-portfolio.netlify.app) | [GitHub](https://github.com/vaishnavishelke2021/Portfolio-Website) | HTML, CSS, Bootstrap, Netlify | 327 | | Timothy Klint | ![TJ Klint Software Developer](https://github.com/user-attachments/assets/1897df67-24c7-418c-b96b-57d5b94b7e3b) | [tjklint.github.io](https://tjklint.github.io) | [GitHub](https://github.com/tjklint/tjklint.github.io) | React, TypeScript, SASS | 328 | | Pravin Mane | ![pravinmane.com](https://github.com/user-attachments/assets/310d061d-ba72-45dd-b18f-32ca7536dab7) | [pravinmane.com](https://www.pravinmane.com/) | [GitHub](https://github.com/pravinmane1/Portfolio) | Angular, HTML, SCSS, TypeScript, gh-pages | 329 | | yuxxeun | ![yuxxeun](https://github.com/user-attachments/assets/0008dca1-ade4-4baa-bb07-541efe93a824) | [yuxxeun.xyz](https://yuxxeun.xyz) | [yuxxeun](https://github.com/yuxxeun) | Next.js, Tailwind, Supabase, Vercel | 330 | | Shivam Javiya | ![portfolio](https://github.com/user-attachments/assets/209954b3-0a7a-422a-b3ff-71178126d8cb) | [shivamjaviya.netlify.app](https://shivamjaviya.netlify.app/) | [GitHub](https://github.com/ShivamJaviya/Shivam_Portfolio) | HTML, CSS, JS | 331 | | Krishnakumar Valliappan | ![Krishnakumar portfolio](https://github.com/user-attachments/assets/47417aec-3674-4e02-a459-2635bfee76e4) | [krishnakumar.dev](https://www.krishnakumar.dev/) | [GitHub](https://github.com/krishnavalliappan/portfolio-website) | Next.js, Framer, TypeScript, TailwindCSS, shadcn/ui | 332 | | Gokul Raja | ![Portfolio](https://github.com/user-attachments/assets/59df372f-c338-4410-8b23-af2b21ffd705) | [gokul-raja84.github.io](https://gokul-raja84.github.io/) | [GitHub](https://github.com/Gokul-Raja84/gokul-raja84.github.io) | React, styled-components, GraphQL, UnDraw, Github Pages | 333 | | Abdelrahman Ahmed | ![Abdal_Rahman_Software_Engineer](https://github.com/user-attachments/assets/8d323b25-452e-4541-8120-34f9e8868211) | [abdalrahman.tech](https://abdalrahman.tech) | [GitHub](https://github.com/AB-DALRAHM-AN) | Next.js, TypeScript, TailwindCss, Shadcn/ui, Notion, Vercel, Resend, ReactEmail | 334 | | Jiseeeh | ![jiseeeh](https://github.com/user-attachments/assets/e15090ec-a4a2-49b4-9f02-07a127e7bd7a) | [jiseeeh.codes](https://jiseeeh.codes) | [GitHub](https://github.com/Jiseeeh/portfolio-revamp) | Next.js, TailwindCSS, GSAP, Vercel, PostHog | 335 | | Ghulam Ahmed | ![Ghulam's Portfolio Screenshot](https://github.com/user-attachments/assets/7bb42754-c642-4031-98a2-f3cf12351947) | [gahmed.com](https://gahmed.com) | [GitHub](https://github.com/theghulam) | Astro, Solid.js, TypeScript, TailwindCSS | 336 | | Carson Spriggs | ![Carson's Portfolio](https://github.com/user-attachments/assets/ebc39e5e-4cf5-4852-8649-81a41a772130) | [carsonsgit.github.io](https://carsonsgit.github.io/) | [GitHub](https://github.com/carsonSgit/carsonsgit.github.io) | React, TypeScript, SCSS | 337 | | Nicholas Gannon | ![Nicholas' Portfolio-Screenshot](https://github.com/user-attachments/assets/a9fe6bee-fe62-4275-8078-cc0dcbff4957) | [nicholasgannon.io](https://nicholasgannon.io/) | [GitHub](https://github.com/NicholasGannon/Portfolio) | HTML, TailwindCSS, JavaScript | 338 | | Chung Nguyen Thanh | ![ChunhThanhDe's Portfolio Screenshot](https://github.com/user-attachments/assets/1d84ec41-2003-4dbf-a147-0bf6e557464c) | [chunhthanhde.github.io](https://chunhthanhde.github.io) | [GitHub](https://github.com/chunhthanhde) | Flutter, Dart, Github Pages | 339 | | Babatunde Afreka | ![Babatunde Afreka](https://github.com/user-attachments/assets/40998efa-1242-4a34-bbd0-0c8f52bae569) | [bafrekauiux.framer.website](https://bafrekauiux.framer.website/) | None | Framer, React | 340 | | LNLenost | ![LNLenost portfolio](https://github.com/user-attachments/assets/04257cca-db69-4917-97c0-6e8d44d8599c) | [lnlenost.netlify.app](https://lnlenost.netlify.app/) | [GitHub](https://github.com/LNLenost/lnlenost.github.io) | HTML, SASS, JavaScript | 341 | | Shivam Panchal | ![Shivam Panchal screenshot](https://github.com/user-attachments/assets/a2eee35e-c4d9-40e0-b426-97173a921888) | [shivampanchal.vercel.app](https://shivampanchal.vercel.app/) | None | ReactJS, CSS | 342 | | Mariya Baig | ![Mariya Baig](https://github.com/user-attachments/assets/a84c4d58-5d4b-4750-aecc-1111c13c4f8d) | [mariyabaig.vercel.app](https://mariyabaig.vercel.app/) | None | NextJS, TailwindCSS | 343 | | Ketuman | ![Ketuman Vishwakarma portfolio screenshot](https://github.com/user-attachments/assets/2eeb3d2a-47b4-4646-ae43-3205558c2077) | [k2maan.vercel.app](https://k2maan.vercel.app/) | None | NextJS, TailwindCSS | 344 | | Adeola Badero | ![Adeola Badero's 'Folio](https://github.com/user-attachments/assets/e9f4789e-0544-4294-873b-1b46d980acbe) | [adeolabadero.vercel.app](https://adeolabadero.vercel.app) | [GitHub](https://github.com/adex-hub/ade-folio) | Nextjs, Tailwind CSS, TypeScript, Framer Motion, Vercel | 345 | | Tanuj Chakraborty | ![iamtj-compressed](https://github.com/user-attachments/assets/45d52df4-fa11-40e5-a99a-366af986a7b5) | [iamtj.dev](iamtj.dev) | [GitHub](https://github.com/i-am-tj/iamtj.dev) | React, Next.js, TypeScript, Tailwind CSS | 346 | | Akshay | ![myportfolio](https://github.com/user-attachments/assets/dae45cc1-2a79-44de-9166-df645d9314ec) | [devakshay.vercel.app](https://devakshay.vercel.app) | [GitHub](https://github.com/Akshayp2002) | Angular,TypeScript,HTML, Tailwind CSS, Vercel, Flowbite | 347 | | Hari Thatikonda | ![Hari's Portfolio](https://github.com/user-attachments/assets/ab2ffdbe-bf3b-459f-97f5-621754bc8699) | [thughari.github.io](https://thughari.github.io) | [GitHub](https://github.com/thughari/thughari.github.io) | HTML, CSS, JS, Google sheets integrated responses with mail notification(app script) | 348 | | Sawad | ![Sawad's Portfolio](https://github.com/user-attachments/assets/d369bb33-81e1-469d-b8ea-5e815f44683a) | [sawad.framer.website](https://sawad.framer.website/) | None | Framer | 349 | | Carlos Dubón | ![Carlos Dubon Portfolio](https://github.com/user-attachments/assets/174443cc-d0fe-4d0c-85d8-7e1a11e1d861) | [carlosdubon.dev](https://carlosdubon.dev) | None | Next.js 14 (App Router), TailwindCSS, TypeScript, Framer Motion, Velite | 350 | | Umesh Nagare | ![Portfolio](https://github.com/user-attachments/assets/965c1482-ba68-42f1-8a35-d9432245f9fd) | [umeshnagare.vercel.app](https://umeshnagare.vercel.app) | [GitHub](https://github.com/Algoture/PortFolio) | React, Vercel, CSS, Locomotive Scroll | 351 | | Muhammad Essa | ![Muhammad's Portfolio](https://github.com/user-attachments/assets/d89bdcc9-af16-4238-8cfa-4404182aae0c) | [muhammadessa.vercel.app](https://muhammadessa.vercel.app/) | [GitHub](https://github.com/imuhammadessa) | React.js, Next.js, Tailwind, MUI and Vercel. | 352 | | Farouk Mustapha | ![devFarouk--](https://github.com/user-attachments/assets/b838cec5-83ea-438d-8cf7-78ffd2e50794) | [devfarouk.vercel.app](https://devfarouk.vercel.app/) | [GitHub](https://github.com/Farouk-ayo/devfarouk) | NextJs, Typescript, TailwindCSS, AOS | 353 | | Sachin Desai | ![sachin-desai-portfolio-compressed](https://github.com/user-attachments/assets/259f8197-9aa6-4e18-a2ed-0f81de07106f) | [sachindesai.in](https://sachindesai.in) | [GitHub](https://github.com/sachind3/finalportfolio) | Next Js 14, Tailwind CSS Vercel, GSAP, CSS, Locomotive Scroll | 354 | | Rauliqbal | ![rauliqbal-preview](https://github.com/user-attachments/assets/dbe29f36-a04f-4305-92e6-2b36b84fdc4a) | [rauliqbal.vercel.app](https://rauliqbal.vercel.app/) | None | Next JS, TypeScript, Tailwind CSS, Framer Motion, Supabase | 355 | | TSolutionsX | ![TSolution screenshot](https://github.com/user-attachments/assets/9e9746e9-c6d5-4e87-b1ef-66649606af08) | [techsolutionsx.vercel.app](https://techsolutionsx.vercel.app/) | None | NextJS, TailwindCSS | 356 | | Chun-Ho (Hugo) Lin | ![1chooo-compressed](https://github.com/user-attachments/assets/6cbdefb3-a96f-47f3-80f1-d4ec55071cf5) | [1chooo.com](https://1chooo.com/) | [GitHub](https://github.com/1chooo/1chooo.com) | ReactJS, Next.js, Nextra (V3), TypeScript | 357 | | Priyanshu Tiwari | ![Priyanshu](https://github.com/user-attachments/assets/b5b35fc7-89cd-4439-9fb1-802622e3ac2f) | [priyanshu-tiwari.vercel.app](https://priyanshu-tiwari.vercel.app/) | [GitHub](https://github.com/priyanshtiwari001/portfolio) | NextJS, TailwindCSS, TypeScript, ThreeJS | 358 | | Durgesh | ![Durgesh screenshot](https://github.com/user-attachments/assets/efb56504-c4bf-460b-a92d-d5caabe67b59) | [yodkwtf.com](https://yodkwtf.com/) | [GitHub](https://github.com/yodkwtf/yodkwtf.com) | ReactJS, CSS, Context API, Airtable CMS | 359 | | Mihir | ![mihir-screenshot](https://github.com/user-attachments/assets/360b7613-349f-4b97-bfaa-f7a491e0024d) | [mihir-portfolio-main-777.vercel.app](https://mihir-portfolio-main-777.vercel.app/) | [GitHub](https://github.com/MIHIR2006/mihir-portfolio) | React, Framer, GSAP, EmailJS | 360 | | Aditya Bansal | ![aditya portfolio](https://github.com/user-attachments/assets/71506a08-c688-4874-b356-dd669f94bafc) | [adityabansal.tech](https://www.adityabansal.tech/) | None | Three js, R3F, React Js, Framer Motion, GSAP | 361 | | Nafis Mahmud Ayon | ![nafisbd portfolio](https://github.com/user-attachments/assets/70a0398d-246b-46aa-86c4-41b02aed56f5) | [nafisbd.com](https://nafisbd.com/) | [GitHub](https://github.com/NafisMahmudAyon/Portfolio-NafisBd.com-v2) | React Js, Framer Motion, NextJS, TailwindCSS, TypeScript | 362 | | Ata Berkay Karakuş | ![port](https://github.com/user-attachments/assets/79981fa1-5b5b-4b5c-9a29-dfce53f2ea01) | [berkaykrks.com](https://berkaykrks.netlify.app/) | [GitHub](https://github.com/berkaykrks/personal-website) | HTML, CSS, JS | 363 | | Salim Rutaganda | ![salim portfolio](https://github.com/user-attachments/assets/37814bfc-a745-432d-8526-e1df45757a13) | [rsalim.vercel.app](https://www.rsalim.vercel.app/) | [GitHub](https://github.com/rutaganda-salim/devfolio) | React, Next.js, Tailwindcss, TypeScript | 364 | | Culture DevOps | ![Capture-culturedevops](https://github.com/user-attachments/assets/80927193-1f1d-433b-a109-504c86067297) | [culturedevops.com](https://culturedevops.com/en) | [GitHub](https://github.com/CultureDevOps/blog) | Next.js, Tailwind CSS, i18n | 365 | --------------------------------------------------------------------------------