├── .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 | 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 |
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 | 
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 |
83 |
84 |
85 |
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 |
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 | 
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 |
83 |
84 |
85 |
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://victoreke.com) | [GitHub](https://github.com/evavic44/victoreke.com) | Nextjs, Sanity, Tailwind CSS, TypeScript, Umami, Vercel |
8 | | Kent C. Dodds |  | [kentcdodds.com](https://kentcdodds.com) | [GitHub](https://github.com/kentcdodds/kentcdodds.com) | React, TypeScript, Remix, Prisma, Redis, Postgres, CSS |
9 | | Brittany Chiang |  | [v4.brittanychiang.com](https://v4.brittanychiang.com/) | [GitHub](https://github.com/bchiang7/v4) | React, Gatsby, Styled-components |
10 | | Braydon Coyer |  | [braydoncoyer.dev](https://braydoncoyer.dev/) | [GitHub](https://github.com/braydoncoyer/braydoncoyer.dev) | React, TypeScript, NextJS, Tailwindcss, Notion API, Supabase |
11 | | Tania Rascia |  | [taniarascia.com](https://taniarascia.com) | [GitHub](https://github.com/taniarascia/taniarascia.com) | React, Gatsby, CSS, Netlify, NodeJS |
12 | | Jemima Abu |  | [jemimaabu.com](https://jemimaabu.com) | [GitHub](https://github.com/jemimaabu/portfolio) | HTML, CSS, JavaScript. |
13 | | Rekhchand Sahu |  | [rekhchandsahu.com](https://rekhchandsahu.com) | None | React, Gatsby, Preact, GSAP |
14 | | Olaolu Olawuyi |  | [olaolu.dev](https://olaolu.dev) | [GitHub](https://github.com/whizkydee/olaolu.dev) | VueJS, JavaScript, HTML, styled-components, Sass |
15 | | Thang Huu Vu |  | [thvu.dev](https://www.thvu.dev/) | [GitHub](https://github.com/ThangHuuVu/thvu-blog) | React, NextJS, NodeJS, TypeScript, GraphQL, Tailwindcss |
16 | | George Francis |  | [georgefrancis.dev](https://georgefrancis.dev) | None | GSAP, Netlify, HTML, CSS, JavaScript |
17 | | Aditya Vikram |  | [people.umass.edu/avsingh](https://people.umass.edu/avsingh) | [GitHub](https://github.com/AVS1508/My-Alternate-Portfolio-Website) | HTML, CSS, JavaScript |
18 | | Adeola Adeoti |  | [adeolaadeoti.site](https://www.adeolaadeoti.site) | [GitHub](https://github.com/adeolaadeoti/adeolaadeoti-v2) | TypeScript, GSAP, NodeJS, NextJS, SCSS |
19 | | Dejan Markovic |  | [dejan.works](https://www.dejan.works) | None | HTML, CSS, JavaScript, Jquery |
20 | | Max Böck |  | [mxb.dev](https://mxb.dev) | [GitHub](https://github.com/maxboeck/mxb) | Eleventy, SCSS, Nunjucks |
21 | | David Darnes |  | [darn.es](https://darn.es) | None | Netlify, Jekyll, ETC |
22 | | Schulz Daniel |  | [iamschulz.com](https://iamschulz.com) | [GitHub](https://github.com/iamschulz/iamschulz-hugo) | Hugo, Shell, JavaScript |
23 | | Rafael Conde |  | [rafa.design](https://rafa.design) | [GitHub](https://github.com/rafaelconde/rafaelconde) | Nunjucks, JavaScript, CSS |
24 | | Bruno Simon |  | [bruno-simon.com](https://bruno-simon.com) | [Github](https://github.com/brunosimon/folio-2019) | GSAP, ThreeJS, JavaScript, ETC |
25 | | Oluwadare Oluwaseyi |  | [seyi.dev](https://www.seyi.dev) | [GitHub](https://github.com/oluwadareseyi/folio-v2) | HTML, SCSS, JavaScript, GSAP |
26 | | Jason Lengstorf |  | [jason.energy](https://www.jason.energy) | [GitHub](https://github.com/jlengstorf/jason.energy) | JavaScript, TypeScript, Nunjucks, CSS |
27 | | Deidre Driscoll |  | [deidredriscoll.com](https://deidredriscoll.com) | None | HTML, JavaScript, CSS, GSAP |
28 | | Chris Porter |  | [madebyporter.com](https://madebyporter.com) | [GitHub](https://github.com/madebyporter/madebyporter) | HTML, Slim, Ruby, SCSS, Shell, JavaScript, CSS |
29 | | Louis Hoebregts |  | [mamboleoo.be](https://www.mamboleoo.be) | None | PHP, Parcel |
30 | | Adrien Gervaix |  | [adriengervaix.com](https://adriengervaix.com) | None | HTML, CSS, JavaScript |
31 | | Aaron Shapiro |  | [aaron.mn](https://www.aaron.mn) | [GitHub](https://github.com/aarshap/aaron.mn) | React, Gatsby, Styled Components, Netlify |
32 | | Peter Tait |  | [petertait.com](https://petertait.com) | [GitHub](https://github.com/petertait/petertait.com) | React, Webpack, Radium, Netlify |
33 | | Rick Waalders |  | [rickwaalders.com](https://www.rickwaalders.com) | None | NextJS, React, NodeJS, GSAP, Webpack |
34 | | Community Pro |  | [cpro-portfolio-html](https://cpro-portfolio-html.netlify.app) | [Github](https://github.com/CommunityPro/portfolio-html) | HTML, CSS, JavaScript |
35 | | Ahmed Zougari |  | [ahmedzougari.com](https://ahmedzougari.com) | [GitHub](https://github.com/zougari47/portfolio-template) | HTML, SASS, Bootstrap, JavaScript, Vite |
36 | | Raj Savaliya |  | [rajsavaliya.com](https://www.rajsavaliya.com/) | [GitHub](https://github.com/SRX9/portfoliosrx9) | NextJS, React, TypeScript, Tailwind CSS |
37 | | Israel Mitolu |  | [israelmitolu.netlify.app](https://israelmitolu.netlify.app) | [GitHub](https://github.com/israelmitolu/premier-portfolio) | HTML, SASS, Javascript, GSAP |
38 | | Saikat Roy |  | [saikatroy.netlify.app](https://saikatroy.netlify.app/) | [GitHub](https://github.com/njmsaikat/portfolio) | HTML, CSS, Bootstrap, JavaScript, jQuery |
39 | | Anand Baraik |  | [anandbaraik.github.io](https://anandbaraik.github.io) | [GitHub](https://github.com/anandbaraik/anandbaraik.github.io) | HTML, CSS, React.js |
40 | | Nirban Chakraborty |  | [nirban-chakraborty.netlify.app](https://nirban-chakraborty.netlify.app/) | [GitHub](https://github.com/nirban256/personal_website) | ReactJs, JavaScript, SASS, HTML |
41 | | Benaiah Alumona |  | [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.github.io/](https://nayeemdev.github.io/) | [GitHub](https://github.com/nayeemdev/nayeemdev.github.io) | HTML, CSS, Bootstrap, Javascript, jQuery |
43 | | Sachin Chaurasiya |  | [sachinchaurasiya.dev](https://sachinchaurasiya.dev) | None | HTML, CSS, JavaScript, ReactJs, Material UI |
44 | | Anish De |  | [anishde.dev](https://anishde.dev) | [GitHub](https://github.com/AnishDe12020/portfolio) | Next.js, TypeScript, Tailwind CSS, Content Layer |
45 | | Shourya Shikhar Ghosh |  | [shourya.vercel.app](https://shourya.vercel.app) | [GitHub](https://github.com/danger-ahead/flutter_dev_folio) | Flutter |
46 | | Omar Sherif Ali ~OSA |  | [osa-portfolio.vercel.app](https://osa-portfolio.vercel.app/) | [GitHub](https://github.com/omar-sherif9992) | ReactJs, JavaScript, CSS, HTML |
47 | | Robby Leonardi |  | [rleonardi.com/](http://www.rleonardi.com) | None | NextJS, React, NodeJS, GSAP, Webpack |
48 | | Serdar Gökhan |  | [serdargokhan.dev](https://serdargokhan.dev) | [GitHub](https://github.com/serdargokhan/portfolio-website-v1) | NextJS, TypeScript, TailwindCSS |
49 | | Jeferson Brito |  | [jefersonsilva.me/](https://www.jefersonsilva.me/) | [GitHub](https://github.com/jeferson-sb/portfolio) | Vue 3.0, Vite |
50 | | Trịnh Minh Nhật |  | [trinhminhnhat.com](https://trinhminhnhat.com) | None | React, Tailwindcss |
51 | | Yunus Ertürk |  | [yunuserturk.com](https://yunuserturk.com) | None | HTML, CSS, React, NextJS, |
52 | | Phong Nguyen |  | [napthedev.com](https://napthedev.com) | [Github](https://github.com/napthedev/portfolio-next) | Nextjs, Tailwind, Framer-motion, Locomotive-scroll |
53 | | Ismael López |  | [ismaellopez.dev](https://ismaellopez.dev) | None | Svelte, JavaScript, CSS, HTML, Netlify CMS |
54 | | Micah Lindley |  | [micahlindley.com](https://micahlindley.com) | [GitHub](https://github.com/micahlt/micahlt.github.io) | Vue 3, Vite |
55 | | Tri Dang |  | [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.com](https://rezaghz.com) | None | HTML, CSS, Bootstrap,Javascript, Blade |
57 | | Ariful Alam |  | [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://dalelarroder.com) | [GitHub](https://github.com/dlarroder/dalelarroder) | NextJS, Preact, TypeScript, Tailwind, MDX |
59 | | Williams Samuel |  | [williamssam.netlify.app](https://williamssam.netlify.app/) | [GitHub](https://github.com/williamssam/My-Portfolio) | HTML, CSS, Javascript |
60 | | Guillaume Gouessan |  | [guillaumegouessan.com](https://guillaumegouessan.com/) | [GitHub](https://github.com/superguigui/guillaumegouessan.com) | GSAP, ThreeJS, JavaScript |
61 | | Patrick Heng |  | [patrickheng.com](https://patrickheng.com/) | None | Nuxt.js, GSAP, ThreeJS |
62 | | Andrew Baisden |  | [andrewbaisden.com](https://andrewbaisden.com) | [GitHub](https://github.com/andrewbaisden/andrew-baisden-portfolio-2022) | HTML, CSS, TypeScript, ReactJS |
63 | | Aziz Rahman |  | [azizstark.com](https://azizstark.com) | [Github](https://github.com/AzizStark/AzizStark/tree/portfolio-v2) | React, Gatsby, Styled-Components, SCSS, AnimeJS |
64 | | Leonel Ngoya |  | [lndev.me](https://lndev.me) | [GitHub](https://github.com/ln-dev7) | HTML, CSS, JavaScript |
65 | | Jimmy Soussan |  | [cozy-codeur.fr](https://www.cozy-codeur.fr) | [Github](https://github.com/jilink/personal-portfolio) | React, Gatsby, Chakra UI, Framer Motion |
66 | | Segun Ajibola |  | [segunajibola.com](https://www.segunajibola.com) | [Github](https://github.com/segunajibola/portfolio) | HTML, CSS, TailwindCSS, React, SwiperJS |
67 | | Hisami Kurita |  | [hsmkrt1996.com](https://hsmkrt1996.com/) | [Github](https://github.com/hisamikurita/hisamikurita-portfoliosite) | Vue.js, Nuxt.js, SCSS, ThreeJS, GSAP, ASSCROLL, imagesLoaded |
68 | | Dennis Snellenberg |  | [dennissnellenberg.com](https://dennissnellenberg.com/) | None | GSAP. JQuery, PHP, VueJS |
69 | | Isaac Fayemi |  | [fayemi.design](https://www.fayemi.design/) | None | Vanilla JS, pug, Prismic CMS, SCSS, ThreeJS, GSAP |
70 | | Bhavin Virani |  | [bhavinn.xyz](https://bhavinn.xyz) | [Github](https://github.com/bhavinvirani/Protfolio) | HTML, CSS, JS, React.js, Github API |
71 | | Patrick Scott |  | [pscott.io](https://pscott.io) | None | React.js, Heroku and Github Pages |
72 | | Lazar Nikolov |  | [nikolovlazar.com](https://nikolovlazar.com) | [Github](https://github.com/nikolovlazar/nikolovlazar.com) | Next.js, Chakra UI, MDX, Prisma, PlanetScale |
73 | | Reuben Rapose |  | [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 |  | [mshahanwaz.me](https://mshahanwaz.me) | [GitHub](https://github.com/mshahanwaz/portfolio-v4) | HTML, CSS, JavaScript, React, Next.js, Nodemailer |
75 | | Lee Robinson |  | [leerob.io](https://leerob.io/) | [GitHub](https://github.com/leerob/leerob.io) | Next.js, PlanetScale, Prisma, Vercel, Sanity, Tailwind CSS |
76 | | Parth Desai |  | [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 |  | [iamvictor.tech](https://iamvictor.tech) | None | Next.js, Tailwind CSS, React Rough Notation, Vivus, Netlify |
78 | | Usman Sabuwala |  | [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 |  | [lookupzach.netlify.app](https://lookupzach.netlify.app) | None | ReactJS, Material UI, SCSS, Styled Components |
80 | | Payton Pierce |  | [paytonpierce.dev](https://paytonpierce.dev) | [GitHub](https://github.com/paytonjewell/paytonpierce.dev) | ReactJS, Material UI |
81 | | Jacob Valdez |  | [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://jasmeetsinghbhatia.github.io/resume) | [GitHub](https://github.com/jasmeetsinghbhatia/resume) | HTML, CSS, JavaScript |
83 | | Walter Teng |  | [walterteng.com](https://walterteng.com/) | [GitHub](https://github.com/davzoku/personal-website-v1) | React, Typescript, Gatsby, Netlify |
84 | | Jahidul Islam |  | [XahidEx.com](https://xahidex.com/) | None | Typescript, NextJs, TailwindCSS, Prisma, Contentlayer, React |
85 | | Greg Sithole |  | [gregsithole.com](https://gregsithole.com) | [GitHub](https://github.com/GregSithole/gregsithole-react-portfolio) | HTML, CSS, React.js |
86 | | Rohit Saini |  | [rohit-saini](https://portfolio-45b9b.web.app/) | None | ReactJs, CSS, GSAP, Framer Motion |
87 | | Oscar Barajas |  | [gndx.io](https://gndx.io) | [GitHub](https://github.com/gndx/gndx.io) | HTML, TailwindCSS |
88 | | Phillip Cabrera |  | [Portfolio](https://pcabreram-portfolio.netlify.app/) | [GitHub](https://github.com/pcabreram1234/portfolio) | HTML, CSS, JavaScript, Webpack, ReactJs |
89 | | Nahuel Carrizo |  | [Portfolio](https://nahuel61920.github.io/portafolio-Nahuel/) | [GitHub](https://github.com/Nahuel61920/portafolio-Nahuel) | HTML, CSS, JavaScript, React, Webpack, Github Pages |
90 | | Alfaizkhan Pathan |  | [Portfolio](https://alfaizkhan.github.io) | [GitHub](https://github.com/Alfaizkhan/alfaizkhan.github.io) | Flutter, Dart, Github Pages |
91 | | Jatin Kamboj |  | [jatinkamboj.me](https://jatinkamboj.me/) | None | HTML, CSS, JavaScript, GreenSock |
92 | | Leonid Meleshin |  | [leon0399.ru](https://leon0399.ru/) | [GitHub](https://github.com/leon0399/leon0399.ru) | ReactJS, Tailwind, CSS, Vercel |
93 | | Brayden |  | [braydentw.io](https://braydentw.io/) | [GitHub](https://github.com/BraydenTW/braydentw.io) | React, NextJS, TailwindCSS |
94 | | Ben |  | [nuro.dev](https://nuro.dev/) | [GitHub](https://github.com/NuroDev/nuro.dev) | React, NextJS, TailwindCSS |
95 | | Matthias Kretschmann |  | [matthiaskretschmann.com](https://matthiaskretschmann.com/) | [GitHub](https://github.com/kremalicious/portfolio) | React, Gatsby |
96 | | Hamish Williams |  | [hamishw.com](https://hamishw.com/) | [GitHub](https://github.com/HamishMW/portfolio) | React, ThreeJS, NextJS |
97 | | Çağlar Turalı |  | [turali.js.org](https://turali.js.org/) | [GitHub](https://github.com/caglarturali/caglarturali.github.io) | React, TypeScript |
98 | | Pyae Sone |  | [pyaesonepsn.github.io](https://pyaesonepsn.github.io/portfolio-project/) | [GitHub](https://github.com/pyaesonepsn/portfolio-project) | HTML, CSS, JavaScript |
99 | | Efren Martinez |  | [efrencodes.com](https://efrencodes.com) | [GitHub](https://github.com/efrencodes/efrencodes.ts) | NextJS, TypeScript, TailwindCSS |
100 | | Eliaz LR |  | [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.com](https://hicaku.com) | [GitHub](https://github.com/spencehiko/portfolio) | Vue 3, Pinia, TypeScript |
102 | | Ara Oladipo |  | [araoladipo.tech](https://araoladipo.tech/) | [GitHub](https://github.com/Ara-O/Portfolio-Website) | HTML, CSS, Javascript, Vue.js, Spline3D |
103 | | Anthony Fu |  | [antfu.me](https://antfu.me/) | [GitHub](https://github.com/antfu/antfu.me) | VueJS, Markdown, TypeScript, CSS, HTML |
104 | | Timothy Lin |  | [timlrx.com](https://timlrx.com) | [GitHub](https://github.com/timlrx/timlrx.com) | NextJS, MDX, TailwindCSS, JavaScript, SASS |
105 | | Ngô Phú Thịnh |  | [thinhcorner.com](https://thinhcorner.com) | [GitHub](https://github.com/Th1nhNg0/th1nhng0.vercel.app) | NextJS, TailwindCSS, TypeScript, CSS |
106 | | Josiah B. Etuk |  | [jobenetuk.dev](https://jobenetuk.dev/) | None | Vanilla JS, Node JS, Prismic CMS, SASS, GSAP |
107 | | Stef Ivanov |  | [stefivanov.com](https://stefivanov.com) | None | WordPress, Yoast SEO, MailChimp, PWA, Google Analytics, Sumo. |
108 | | Erika Senft Miller |  | [erikasenftmiller.com](https://www.erikasenftmiller.com/) | None | Contentful, GSAP, LazySizes, PWA, Google Analytics. |
109 | | Ruben Kuipers |  | [rubenkuipers.design](https://rubenkuipers.design/) | None | Vue.js, Nuxt.js, Tailwind CSS, scrollreveal, Google Tag Manager, Google Analytics |
110 | | Maggie Appleton |  | [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 |  | [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.com](https://techika.com) | [Github](https://github.com/infantiablue) | Vue 3, Vite, VuePress, Tailwindcss, Tailwind, Lighthouse |
113 | | Wasim Baig |  | [wasimbaig.com](https://wasimbaig.com) | [GitHub](https://github.com/simbaig/portfolio-nextjs) | Next JS, Tailwind CSS, Framer-Motion |
114 | | Mike Bifulco |  | [mikebifulco.com](https://mikebifulco.com) | [GitHub](https://github.com/mbifulco/blog) | NextJS, React, SCSS, MDX, Vercel |
115 | | Shodipo Ayomide |  | [shodipoayomide.com](https://shodipoayomide.com/) | [GitHub](https://github.com/Developerayo/shodipoayomide.com) | Gatsby, React, SCSS, Bootstrap, Jquery |
116 | | Damian Watracz |  | [watracz.com](https://watracz.com/) | None | HTML, CSS, JavaScript, Swiper |
117 | | Franklin Ohaegbulam |  | [frankiefab.com](https://frankiefab.com) | [GitHub](https://github.com/frankiefab100/frankiefab.tech) | HTML, CSS, JavaScript |
118 | | Samuel Akinosho |  | [samuelakinosho.com](https://www.samuelakinosho.com/) | None | Webflow, Jquery |
119 | | Rutik Wankhade |  | [rutikwankhade.dev](https://rutikwankhade.dev/) | None | NextJs, React, NodeJS, TailwindCSS |
120 | | Adenekan Wonderful |  | [codewonders.dev](https://www.codewonders.dev/) | None | React, NextJS, Styled-components |
121 | | Olamide Sholanke |  | [olamide.dev](https://www.olamide.dev/) | None | Vue, NuxtJS |
122 | | Daniel Ezekiel |  | [danielezekiel.me](https://danielezekiel.me/) | [GitHub](https://github.com/Daniel-Ezekiel/Portfolio-Website) | HTML, CSS, JavaScript |
123 | | Julia Johnson |  | [juliacodes.com](https://www.juliacodes.com/) | [GitHub](https://github.com/juliacodes/JuliaCodesGatsby) | React, Styled-components |
124 | | Rida F'kih |  | [rida.dev](https://www.rida.dev/) | [GitHub](https://github.com/ridafkih/portfolio) | React, NextJS |
125 | | Anand Baraik |  | [anandbaraik-folio.netlify.app](https://anandbaraik-folio.netlify.app/) | [GitHub](https://github.com/anandbaraik/anandfolio) | HTML, CSS. |
126 | | Abhishek Jha |  | [abhishekjha.me](https://www.abhishekjha.me) | None | HTML, CSS, JavaScript, Ruby on Rails, GSAP |
127 | | Olamide Adeyi |  | [olamideadeyi.com](https://www.olamideadeyi.com) | None | Vue, NuxtJS, GSAP |
128 | | Greg Ives |  | [gregives.co.uk](https://www.gregives.co.uk) | [GitHub](https://github.com/gregives/gregives.co.uk) | Vue, NuxtJS, SASS, Netlify |
129 | | Collins Enebeli |  | [kadet.dev](https://kadet.dev/) | [GitHub](https://github.com/kadetXx/kadet.dev) | React, Gatsby |
130 | | Cole_Solomon |  | [colesolomon.me](https://colesolomon.me/) | [GitHub](https://github.com/codecole/colesolomonme) | HTML, CSS, SASS, JavaScript, GSAP, W3js, PHP |
131 | | Adewale Adeyemi |  | [adex.onrender.com](https://adex.onrender.com/) | [GitHub](https://github.com/dev-adewale/portfolio) | Gridsome, GraphQL, Tailwind. |
132 | | Harsh Singh |  | [harshsingh.xyz](https://harshsingh.xyz/) | [GitHub](https://github.com/harshhhdev/harshhhdev.github.io) | NextJS, TailwindCSS, TypeScript, Prisma |
133 | | Wallace Nascimento |  | [portfolio-srnascimento40.vercel.app](https://portfolio-srnascimento40.vercel.app/) | [GitHub](https://github.com/SrNascimento40/portfolio) | NextJS, ReactJS, TypeScript, Styled-Components |
134 | | Idris Olubisi |  | [idrisolubisi.com](https://idrisolubisi.com) | [GitHub](https://github.com/Olanetsoft/idrisolubisi.com) | ReactJs, GatsbyJs, TypedJs, Styled Component |
135 | | Aycan Öğüt |  | [aycan.dev](https://www.aycan.dev) | [Github](https://github.com/aycanogut/aycan.dev) | React, Next, TypeScript, Mantine |
136 | | Manish Kumar |  | [manishk.dev](https://manishk.dev) | [Github](https://github.com/manishprivet/portfolio) | React, Next, TypeScript, ParticleJS, Firebase, Vercel |
137 | | Andrea Toffanello |  | [andreatoffanello.com](https://andreatoffanello.com) | None | VueJS, ThreeJS, GSAP, Blender |
138 | | Chandraprakash Darji |  | [chandraprakash.vercel.app](https://chandraprakash.vercel.app/) | [Github](https://github.com/Chandraprakash-Darji/personal) | Nextjs, Typescript, Tailwindcss, Vercel |
139 | | Khaled Mohamed |  | [John Doe](https://portfolio-john2.netlify.app/) | None | HTML5, SCSS, Bootstrap5, JavaScript, SwipperJS, Netlify |
140 | | Michael Kolesidis |  | [michaelkolesidis.com](https://michaelkolesidis.com/) | [GitHub](https://github.com/michaelkolesidis/michaelkolesidis.com) | TypeScript, p5.js, Sass, Vite |
141 | | Piyush Goyani |  | [piyushgoyani.thesourcepedia.org](https://piyushgoyani.thesourcepedia.org) | None | VueJS, Gridsome, TailwindCSS, Firebase |
142 | | Vanessa Santana |  | [nessajs.com.br](https://www.nessajs.com.br/) | [GitHub](https://github.com/vanessa-dev/nessa.js) | HTML, CSS, JavaScript and PHP |
143 | | Mahmoud Elkariouny |  | [clear-sleet.surge.sh](https://clear-sleet.surge.sh/) | [GitHub](https://github.com/mahmoudessam820/my_portfolio) | HTML, CSS, JavaScript |
144 | | Antonio Ayola |  | [antonioayola.netlify.app](antonioayola.netlify.app) | [GitHub](https://github.com/Tono2007/Portafolio) | React, HTML, CSS, Modules CSS, JavaScript, PWA |
145 | | Ajo Alex |  | [devpenzil.dev](https://devpenzil.dev/) | [GitHub](https://github.com/devpenzil/devpenzil.dev) | NextJS, Tailwind, GraphCMS |
146 | | Erys Mozo |  | [erysmozo.vercel.app](https://erysmozo.vercel.app/) | [GitHub](https://github.com/ErysCode7/Web-Portfolio) | React, SASS, Vite, AOS |
147 | | Peace Jinadu-Paul |  | [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 |  | [hariprasd.me](https://hariprasd.me) | [GitHub](https://github.com/hariprasd) | React, Tailwind CSS |
149 | | Danilo Batson |  | [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 |  | [soumyadeeposd.github.io](https://soumyadeeposd.github.io/Tensor-Block/) | [GitHub](https://github.com/SoumyadeepOSD/Tensor-Block) | HTML, CSS, JavaScript |
151 | | Byunggeun Cho |  | [bbangjo.kr](https://bbangjo.kr) | [GitHub](https://github.com/bbangjooo/buffalo) | HTML, CSS, JavaScript, TypeScript, Threejs, Blender |
152 | | James Warner |  | [jmswrnr.com](https://jmswrnr.com/) | None | NextJS, Sanity, CSS, Preact, NodeJS, ThreeJS |
153 | | Maxime Heckel |  | [maximeheckel.com](https://maximeheckel.com/) | [GitHub](https://github.com/MaximeHeckel/blog.maximeheckel.com) | NextJS, TypeScript, Stiches/CSS, MDX |
154 | | Twan Mulder |  | [twanmulder.com](https://www.twanmulder.com/) | [GitHub](https://github.com/twanmulder/portfolio) | React, TailwindCSS, Stripe, Netlify |
155 | | Rishi Mohan |  | [rishimohan.me](https://rishimohan.me) | [GitHub](https://github.com/rishimohan/rishimohan.me) | Next.js, TailwindCSS, Framer Motion |
156 | | Nikhil Rajput |  | [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 |  | [raphaelchelly.com/](https://www.raphaelchelly.com) | [GitHub](https://github.com/raphaelchelly/raph_www) | Next.js, TailwindCSS, Vercel |
158 | | Damian Demasi |  | [damiandemasi.com](https://www.damiandemasi.com/) | [GitHub](https://github.com/Colo-Codes/portfolio-v2) | ReactJS, TailwindCSS, DaisyUI |
159 | | Ifedili Onyegbu |  | [ifedili.com](https://www.ifedili.com) | [GitHub](https://github.com/saucecodee/ifedili.com) | Angular, TypeScript, SASS |
160 | | Daniel Cranney |  | [danielcranney.com/](https://www.danielcranney.com/) | [GitHub](https://github.com/danielcranney/portfolio) | NextJS, TailwindCSS, Vercel |
161 | | Abdellatif Laghjaj |  | [abdellatif-laghjaj.ml/](https://www.abdellatif-laghjaj.ml/) | None | VueJS, Lottilefiles, Verel, CSS |
162 | | Adham Dannaway |  | [adhamdannaway.com](https://www.adhamdannaway.com/) | None | Wordpress, PHP, jQuery, MySQL |
163 | | Khaled Mohamed |  | [James Oliver](https://james-oliver-portfolio.netlify.app/) | None | HTML5, CSS3, SCSS, Bootstrap5, TypeScript, SwipperJS, Fontello, PurgeCSS, Netlify |
164 | | Glayson Visgueira |  | [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 |  | [devahoy.com](https://devahoy.com/) | None | NextJS, Preact, Tailwind CSS, NodeJS |
166 | | Aravind Balla |  | [aravindballa.com](https://aravindballa.com) | [GitHub](https://github.com/aravindballa/website) | NextJS, TypeScript, Tailwind CSS, Vercel |
167 | | Khaled Mohamed |  | [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.netlify.app](https://tanishka-yadav.netlify.app/) | [Github](https://github.com/Tanishka-dev/Portfolio-Reactjs) | ReactJS, Javascript, SASS, Framer Motion |
169 | | David Obodo |  | [davidobodo.com](https://www.davidobodo.com/) | None | NextJS, Typescript, SASS, GSAP, Jest, Sendgrid, Google Analytics |
170 | | Manuel David Gomez |  | [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 |  | [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 |  | [itspp.vercel.app](https://itspp.vercel.app) | [GitHub](https://github.com/priyankarpal/Priyankar) | HTML & SCSS |
173 | | Marieflor Bawanan |  | [marieflor.dev](https://marieflor.dev) | [GitHub](https://github.com/mariebawanan/marieflor.dev) | NextJS, TypeScript, TailwindCSS & GSAP |
174 | | Delba Oliviera |  | [delba.dev](https://delba.dev/) | [GitHub](https://github.com/delbaoliveira/website) | Next.js, MDX, Tailwind, Prisma, Typescript |
175 | | Vivek Patel |  | [vivek9patel.github.io](https://vivek9patel.github.io/) | [GitHub](https://github.com/vivek9patel/vivek9patel.github.io) | NextJS, Tailwind CSS, GitHub Pages |
176 | | Sarah Dayan |  | [sarahdayan.dev](https://www.sarahdayan.dev/) | None | NextJS, Tailwind CSS, NodeJS, Vercel |
177 | | Theodorus Clarence |  | [theodorusclarence.com](https://theodorusclarence.com/) | [Github](https://github.com/theodorusclarence/theodorusclarence.com) | NextJS, TypeScript, Tailwind CSS, MDX Bundler, Prisma |
178 | | Arafat Islam |  | [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 |  | [iamdev.netlify.app/home.html](https://iamdev.netlify.app/home.html) | None | Tailwind, Javascript, React, html/CSS |
180 | | Abo Ghanbari |  | [aboghanbari.com](https://www.aboghanbari.com/) | None | Gatsby, Emotion, GSAP, Preact |
181 | | PATRICK T.LO |  | [pleaseleaveon.com](https://pleaseleaveon.com/) | None | HTML5, CSS, JavaScript, jQuery |
182 | | Aliyah Adefolake |  | [aliyahadefolake.com](https://www.aliyahadefolake.com/) | None | ReactJS, Gatsby, SASS, GSAP, Contentful |
183 | | Travis Fischer |  | [transitivebullsh.it](https://transitivebullsh.it/) | [Github](https://github.com/transitive-bullshit/nextjs-notion-starter-kit) | NextJS, TypeScript, Notion API, Vercel |
184 | | Lynn Fisher |  | [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.com](https://danny-garcia.com/) | [Github](https://github.com/dannygarcia/dannygarcia.github.com) | HTML5, CSS, JavaScript, TypeScript, GLSL, Netlify |
186 | | Robin Payot |  | [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.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.me](https://rauno.me/) | None | NextJS, NodeJS, Stiches, Vercel |
189 | | Anurag Hazra |  | [anuraghazra.dev](https://anuraghazra.dev/) | [GitHub](https://github.com/anuraghazra/anuraghazra.github.io) | React, Gatsby, Styled-components, Cypress, Jest, TravisCI |
190 | | Hardik Gohil |  | [hardikgohilhlr.tech](https://hardikgohilhlr.tech/) | None | Next.js, TypeScript, Firebase, SCSS |
191 | | Jonathan Toon |  | [jonathontoon.com](https://jonathontoon.com/) | [Github](https://github.com/jonathontoon/jonathontoon.com) | Gulp, EsBuild, postCSS, Nunjuck |
192 | | Rafael Derolez |  | [derolez.dev](https://derolez.dev/) | None | NextJS, Sanity, ChakraUI, Emotion |
193 | | Chris Williams |  | [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 |  | [bholmes.dev](https://bholmes.dev/) | [Github](https://github.com/bholmesdev/bholmesdev) | Gatsby, Javascript, SCSS, Pug |
195 | | Yasio |  | [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 |  | [alecbabala.com](https://www.alecbabala.com/) | None | Next.js, Node.js, core-js, React, HSTS, Open Graph, Webpack, MobX, GSAP, Contentful |
197 | | Gavin Nelson |  | [nelson.co](https://nelson.co/) | [Github](https://github.com/gavinmn/nelson.co) | NextJS, Tailwind CSS, Vercel, MDX |
198 | | Yinka Adedire |  | [yinka.codes](https://www.yinka.codes/) | [Github](https://github.com/yinkakun/yinkakun-portfolio) | Gatsby, ReactJS, Styled-Components |
199 | | Abdullah Abdulfatah |  | [draq.tech](https://www.draq.tech/) | None | NextJS, Typescript, ChakraUI |
200 | | Samuel Imolorhe |  | [xkoji.dev](https://www.xkoji.dev/) | [Github](https://github.com/imolorhe/xkoji-code) | Gatsby, GSAP, JavaScript, Netlify |
201 | | Abu Said |  | [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.dev](https://quiet-node.dev) | [GitHub](https://github.com/quiet-node/portfolio-v2) | TypeScript, ReactJS, ViteJS, TailwindCSS, Motion Framer |
203 | | Daniel Wisky |  | [danielwisky.com.br](https://danielwisky.com.br/) | [GitHub](https://github.com/danielwisky/danielwisky.github.io) | HTML, CSS, JavaScript |
204 | | JJ Kasper |  | [jjsweb.site](https://jjsweb.site/) | [Github](https://github.com/ijjk/jjsweb.site) | NextJS, Vercel, CSS |
205 | | Cassidy Williams |  | [cassidoo.co](https://cassidoo.co/) | None | HTML, CSS, JavaScript |
206 | | Jahir Fiquitiva |  | [jahir.dev](https://jahir.dev/) | [Github](https://github.com/jahirfiquitiva/jahir.dev) | Next.js, Tailwind CSS, MDX, contentlayer, PlanetScale, Vercel, TypeScript |
207 | | Stefan Topalovic |  | [stefantopalovicdev.vercel.app](https://stefantopalovicdev.vercel.app/) | None | ReactJS, SCSS, Vercel |
208 | | Abdullah Moiz |  | [mrmoiz.vercel.app](https://mrmoiz.vercel.app/) | None | Next Js ,Tailwind css, Vercel |
209 | | Victor Williams |  | [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 |  | [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.xyz](https://anuoluwapo.xyz/) | [Github](https://github.com/Anu-oluwapo/portfolio-v2) | VueJS, SCSS, GSAP, Vite |
212 | | Andrew Branch |  | [blog.andrewbran.ch](https://blog.andrewbran.ch/) | [Github](https://github.com/andrewbranch/blog) | Gatsby, TypeScript, Emotion, Netlify |
213 | | Max Böck |  | [mxb.dev](https://mxb.dev/) | [Github](https://github.com/maxboeck/mxb) | Eleventy, SCSS, Nunjucks |
214 | | Shahriar Shafin |  | [shahriarshafin.github.io](https://shahriarshafin.github.io/) | [Github](https://github.com/shahriarshafin/myportfolio) | React, Next.js, Tailwind CSS |
215 | | Mukul Chugh |  | [mukulchugh.com](https://mukulchugh.com/) | None | React, Next.js, Styled Components, Netlify |
216 | | Vijay Verma |  | [vjy.me](https://vjy.me/) | None | NextJS, Styled Components, Vercel |
217 | | Jhey Tompkins |  | [jhey.dev](https://jhey.dev/) | [Github](https://github.com/jh3y/jhey.dev) | Sanity, Astro, Tailwind CSS, Netlify |
218 | | David Heckhoff |  | [david-hckh.com/](https://david-hckh.com/) | None | HTML, CSS, JavaScript, ThreeJS, GSAP, PWA, Howler.js |
219 | | Ashish |  | [asrvd.me](https://asrvd.me/) | [Github](https://github.com/asrvd/asrvd.me) | Next.js, tRPC, Tailwind CSS, TypeScript, NextAuth.js, Prisma |
220 | | Robb Owen |  | [robbowen.digital](https://robbowen.digital/) | None | HTML, CSS, JavaScript, Netlify |
221 | | Josh Comeau |  | [joshwcomeau.com](https://www.joshwcomeau.com/) | None | NextJS, Styled Components, MDX, MongoDB, Framer Motion, React Spring, Vercel |
222 | | Charles Bruyerre |  | [itssharl.ee](https://itssharl.ee/) | None | NextJS, ThreeJS, PWA, Vercel |
223 | | Patrick David |  | [bepatrickdavid.com](https://bepatrickdavid.com/) | None | HTML, CSS, JavaScript, jQuery, Plesk, ThreeJS, GSAP, PWA |
224 | | Seán Halpin |  | [seanhalpin.xyz](https://www.seanhalpin.xyz/) | None | Svelte, SvelteKit, Vite, PWA, Node.js |
225 | | Cyd Stumpel |  | [cydstumpel.nl](https://cydstumpel.nl/) | None | WordPress, PHP, ThreeJS, MySQL, GSAP, Lenis |
226 | | Tamal Sen |  | [tamalsen.dev](https://tamalsen.dev/) | None | WordPress, Elementor, PHP, MySQL, Anime.js |
227 | | Aristide Benoist |  | [aristidebenoist.com](https://aristidebenoist.com/) | None | PHP, JavaScript, WebGL, AWS |
228 | | Abhishek Jha |  | [abhishekjha.me](https://abhishekjha.me/) | None | HTML, CSS, JavaScript, GSAP, Varnish, Locomotive Scroll, Github Pages |
229 | | Robin Mastromarino |  | [robinmastromarino.com](http://robinmastromarino.com/) | None | HTML, CSS, JavaScript, WebGL, GSAP, Google Analytics |
230 | | Lanre Adelowo |  | [lanre.wtf](https://lanre.wtf/) | None | NextJS, CSS Modules, GSAP, Vercel, Hugo |
231 | | Prince Muhammad |  | [princemuhammad.pro](https://princemuhammad.pro) | None | JavaScript, React.js, Next.js, TailwindCSS |
232 | | Victor Adeniji |  | [codevickk.com](https://codevickk.com/) | None | Nuxt.js, Vue.js, GSAP, Netlify, Lenis |
233 | | Kaung Myat Kyaw |  | [barry121.com](https://barry121.vercel.app/) | [Github](https://github.com/Rhaegar121/Portfolio) | ReactJS, ThreeJS, TailwindCSS |
234 | | Eliaz LR |  | [eliaz-lr.dev](https://eliaz-lr.dev/) | [Github](https://github.com/Eliaz-LR/portfolio-v3) | Astro, TailwindCSS, Vue, DaisyUI |
235 | | Danny Johnson |  | [mrdannyjohnson.co.uk](https://www.mrdannyjohnson.co.uk/) | None | Astro, Vue, Sanity, Tailwind CSS |
236 | | Wahid Ali |  | [https://www.wahidali.dev](https://www.wahidali.dev/) | [Github](https://github.com/Aliwahid17/portfolio) | Svelte, Tailwind CSS, TypeScript, Vercel |
237 | | Deepanshu Mehra |  | [deeshu2002.github.io/folio](https://deeshu2002.github.io/folio) | [Github](https://github.com/deeshu2002/folio) | HTML, CSS, TypeScript, Vite, PWA |
238 | | Brian Lovin |  | [brianlovin.com](https://brianlovin.com/) | [Github](https://github.com/brianlovin/briOS) | NextJS, TypeScript, Tailwind CSS, Prisma, Planetscale |
239 | | Pritish Samal |  | [pritishsamal.com](https://pritishsamal.com/) | [Github](https://github.com/CIPHERTron/portfolio-v2) | Next.js, TypeScript, Emotion, Chakra UI |
240 | | Sandeep Kumar |  | [eternalfrustation.github.io](https://eternalfrustation.github.io/) | [Github](https://github.com/eternalfrustation/eternalfrustation.github.io) | HTML, CSS, JavaScript |
241 | | Mike Liu |  | [mikeliuu.com](https://mikeliuu.com) | [Github](https://github.com/mikeliuu/mikeliuu.com) | NextJS, TypeScript, Tailwind CSS, HTML, CSS, Vercel |
242 | | Bryan Smith |  | [multikitty.onrender.com](https://multikitty.onrender.com) | [Github](https://github.com/multikitty/multikitty.github.io) | HTML, CSS, JavaScript |
243 | | Goodness Urama |  | [goodie.work](https://www.goodie.work/) | [Github](https://github.com/GoodyBoy301/goodie.work) | Pug, SCSS, Javascript ThreeJS, GSAP, Vercel |
244 | | Zai Santillan |  | [plskz-me.vercel.app](https://plskz-me.vercel.app/) | [Github](https://github.com/plskz/plskz.me) | NextJS, TypeScript, Tailwind CSS, DaisyUI |
245 | | Ashutosh Hathidara |  | [ashutoshhathidara.com](https://ashutoshhathidara.com/#/) | [Github](https://github.com/ashutosh1919/masterPortfolio) | HTML5, CSS3, React, NextJS |
246 | | Syed Moshin |  | [opensource-portfolio.netlify.app](https://opensource-portfolio.netlify.app/) | [Github](https://github.com/devsyedmohsin/portfolio-template) | HTML5, CSS3, JavaScript |
247 | | David Angulo |  | [davidangulo.xyz](https://www.davidangulo.xyz/) | [Github](https://github.com/dcangulo/davidangulo.xyz) | HTML, Jekyl, Ruby, Bootstrap |
248 | | George Christeas |  | [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-theme.dev](https://julien-theme.dev/) | [Github](https://github.com/ZIRTR0X/PersonalWebsite) | Angular, TailwindCSS, ThreeJs |
250 | | Shubh Porwal |  | [shubhporwal.me](https://www.shubhporwal.me/) | [Github](https://github.com/shubh73/devfolio) | NextJS, ReactJS, Tailwind CSS, GSAP |
251 | | Ross Moody |  | [rossmoody.com](https://rossmoody.com/) | [Github](https://github.com/rossmoody/rossmoody.com) | Next.js, Chakra UI, TypeScript, MDX, Netlify |
252 | | Rémy Beumier |  | [remybeumier.be](https://remybeumier.be/) | [Github](https://github.com/beumsk/beumsk.github.io) | Next.js, Sass, MDX, AOS |
253 | | Anirban Das |  | [anirbandas.in](https://www.anirbandas.in/) | [Github](https://github.com/anirban12d/portfolio-2023) | Qwik, React, Tailwind CSS |
254 | | Rafael Santana |  | [rafaelsantana.dev](https://www.rafaelsantana.dev/) | [Github](https://github.com/rafalmeida73/portfolio) | Next.js, Material UI, TypeScript |
255 | | Apoorv Maurya |  | [apoorv.onrender.com](https://apoorv.onrender.com) | [Github](https://github.com/apoorvmaurya/portfolio) | HTML, CSS, JavaScript, |
256 | | Sumonta Saha Mridul |  | [sumonta056.github.io](https://sumonta056.github.io/) | [Github](https://github.com/Sumonta056/sumonta056.github.io) | HTML5, CSS3, JavaScript |
257 | | Daniel Coyula |  | [portfolio.dctech.dev](https://portfolio.dctech.dev/) | None | Flutter |
258 | | Shaan Alam |  | [shaanalam.vercel.app](https://shaanalam.vercel.app) | [GitHub](https://github.com/shaan-alam/shaanalam) | NextJS, Tailwind, TypeScript & Hygraph |
259 | | Gregory Koberger |  | [gkoberger.com](https://gkoberger.com/) | None | VueJS, GSAP, NodeJS, Express |
260 | | Monica Powell |  | [aboutmonica.com](https://aboutmonica.com/) | None | Gatsby, Emotion, Netlify |
261 | | Ismoilbek Ilxomov |  | [ismail.uz](https://ismail.uz/) | None | NextJS, TailwindCSS, Netlify |
262 | | Kehinde Omopariola |  | [pariola.dev](https://www.pariola.dev) | [Github](https://github.com/Pariola-droid/pariola-v2.2.0) | NextJS, Typescript, SASS, Motion One |
263 | | Shivam Gupta |  | [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](https://mateusf.com) | [Github](https://github.com/mateusfg7/mateusf.com) | Next.js, Typescript, Tailwindcss, Giscus, Contentlayer & MDX |
265 | | Anubhav Sigdel |  | [anubhavsigdel.vercel.app](https://anubhavsigdel.vercel.app/) | [GitHub](https://github.com/asigdel29/portfolio) | HTML, CSS, JS |
266 | | Krish Depani |  | [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://bonabrian.com) | [GitHub](https://github.com/bonabrian/bonabrian.com) | Typescript, NextJs, TailwindCSS, Prisma, Contentlayer |
268 | | SofiDev |  | [itssofi.dev](https://itssofi.dev/) | [GitHub](https://github.com/SofiDevO/sofidev-portfolio-astro) | Astro, CSS, Javascript, React |
269 | | Sadee |  | [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](https://nsikandavid.dev) | None | ReactJS, CSS |
271 | | Cruip |  | [preview.cruip.com](https://preview.cruip.com/devspace/) | None | Alpine.JS, Tailwind CSS, Chartjs |
272 | | Dev Khandelwal |  | [slyro.vercel.app](https://slyro.vercel.app/) | [GitHub](https://github.com/khandelwaldev/dev) | Next.JS, Tailwind CSS, MDX |
273 | | Skifli |  | [skifli.github.io](https://skifli.github.io/) | [GitHub](https://github.com/skifli/skifli.github.io) | HTML, CSS, JavaScript |
274 | | Eva Decker |  | [evadecker.com](https://evadecker.com) | [GitHub](https://github.com/evadecker/evadecker.com) | Astro, React, TypeScript, Framer Motion |
275 | | Guglielmo Cerri |  | [guglielmocerri.github.io](https://guglielmocerri.github.io) | [GitHub](https://github.com/GuglielmoCerri/GuglielmoCerri.github.io) | HTML, CSS, JavaScript, reCAPTCHA |
276 | | Wisnu Wicaksono |  | [wiscaksono.com](https://wiscaksono.com/) | [GitHub](https://github.com/wiscaksono/wiscaksono-site) | Nextjs, Tailwind CSS, MDX, Next Auth |
277 | | Emmanuel Alabi |  | [emmanuelalabi.vercel.app](https://emmanuelalabi.vercel.app/) | None | HTML, TailwindCSS |
278 | | Zaher Al Majed |  | [zaher.design](https://zaher.design/) | None | React, TypeScript, NextJS, TailwindCSS |
279 | | Shivani Yadav |  | [shivaniyadav.online](https://shivaniyadav.online) | [GitHub](https://github.com/ShivaniYadav07/Portfolio) | React, TypeScript, ParticleJS, Hostinger, SCSS |
280 | | Matthias Kretschmann |  | [matthiaskretschmann.com](https://matthiaskretschmann.com/) | [GitHub](https://github.com/kremalicious/portfolio) | NextJS, TypeScript, CSS Modules, Vercel |
281 | | Le Vinh Khang |  | [levinhkhang.org](https://levinhkhang.org/) | [GitHub](https://github.com/levinhkhangzz/personal-website) | NextJS, TailwindCSS, React |
282 | | Ali Imam |  | [aliimam.in](https://www.aliimam.in/) | [GitHub](https://github.com/aliimam-in/aliimam) | NextJS, TailwindCSS, React, Lenis |
283 | | Ahmed Amer |  | [tammura.com](https://tammura.com/) | None | NextJS, TailwindCSS, Vercel, Cloudflare |
284 | | Alpay Celik |  | [alpaycelik.dev](https://alpaycelik.dev/) | [GitHub](https://github.com/AlpayC/portfolio_site) | NextJS, TailwindCSS, Typescript, Framer Motion, Swiper, Vercel, NodeMailer |
285 | | Hanaia Youcef |  | [poysa213.me](https://poysa213.me/) | [GitHub](https://github.com/poysa213/portfolio) | Typescript, NextJS, TailwindCSS, Framer Motion |
286 | | Jaber Said |  | [jaber.dev](https://jaber.dev) | [GitHub](https://github.com/Jaber-Saed/3d-protfoluo) | React JS, Tailwind CSS, Three JS |
287 | | Xiaohan Zou |  | [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](https://age-of-23.vercel.app/) | [GitHub](https://github.com/mahhung12/AgeOf23) | Nextjs, MDX, Tailwind CSS, TypeScript, JavaScript |
289 | | CuB3y0nd |  | [cubeyond.net](https://cubeyond.net) | [GitHub](https://github.com/CuB3y0nd/cubeyond.net) | Nextjs, MDX, Tailwind CSS, TypeScript |
290 | | Baraa Alshaer |  | [alshaer.vercel.app](https://alshaer.vercel.app/) | [GitHub](https://github.com/balshaer/alshaer) | React JS, Typescript, Shadcn ui , Tailwind CSS |
291 | | Sameera Sandakelum |  | [sameerasw.com](https://sameerasw.com/) | [GitHub](https://github.com/sameerasw/sameerasw.com) | HTML, CSS, Javascript, Netlify |
292 | | Jam Moonbami |  | [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.asharib.xyz](https://cv.asharib.xyz/) | [GitHub](https://github.com/AsharibAli/cv) | Next.js, React, Typescript, Shadcn/ui, Tailwind CSS, Vercel |
294 | | MAHG |  | [mahg.me](https://mahg.me) | [GitHub](https://github.com/mahg0899/mahgv2) | NextJS, React, Typescript, TailwindCSS, Vercel |
295 | | Sunidhi Singh |  | [sunidhi-singh.netlify.app](https://sunidhi-singh.netlify.app/) | [GitHub](https://github.com/sunidhi014) | HTML, CSS, JavaScript |
296 | | Dhairya Majmudar |  | [https://dhaiyra-majmudar.netlify.app](https://dhaiyra-majmudar.netlify.app) | [Github](https://github.com/DhairyaMajmudar/Personal-Portfolio) | React, Tailwind , Material UI |
297 | | Jay Bhavsar |  | [https://jay.is-savvy.dev](https://jay.is-savvy.dev) | [Github](https://github.com/jbhv12/portfolio) | Vue, Gridsome, Tailwind CSS |
298 | | Siyana Zdravkova |  | [professionalportfolio](https://bluebutterflies.github.io/professionalportfolio/) | [Github](https://github.com/BlueButterflies/professionalportfolio) | Javascript, JSON, React JS, Bootstrap, Tachyons, animate.css, Tspracticles |
299 | | Anshul Gora |  | [anshulwork.netlify.app](https://anshulwork.netlify.app/) | None | ReactJs, Bootstrap, Vanilla CSS, Javascript |
300 | | Dogan Merden |  | [doganmerden.vercel.app](https://doganmerden.vercel.app/) | None | Next.js, TypeScript, Tailwind CSS, AuthJs, next-intl, Daisy UI, framer-motion |
301 | | Ibrahim Sadik Tamim |  | [tam11a.dev](https://tam11a.dev) | [GitHub](https://github.com/tam11a/tam11a.dev) | NextJS, TypeScript, TailwindCSS, Framer, GSAP |
302 | | Dipesh Murmu |  | [dipeshmurmu.com.np](https://dipeshmurmu.com.np/) | None | Tailwind, Alpine, Laravel, Livewire |
303 | | Akshay kumar |  | [akshaytalanki19.com](https://akshaytalanki.netlify.app/) | [GitHub](https://github.com/akshaytalanki19/portfolio) | Html, CSS, JavaScript |
304 | | Pieter-Jan Scheir |  | [pieterjanscheir.com](https://www.pieterjanscheir.com/) | None | React/Next.js, Typescript, Tailwindcss, Vercel, Lucide |
305 | | Huy Nguyen |  | [huyng.xyz](https://www.huyng.xyz/) | None | React.js, TailwindCSS, GSAP, Lenis |
306 | | Anshul Soni |  | [anshulsoni.in](https://www.anshulsoni.in/) | [GitHub](https://github.com/anshulsoni2010/portfolio-website) | HTML, CSS, JavaScript, Other Libraries |
307 | | David Simoes |  | [davesimoesportfolio.netlify.app](https://davesimoesportfolio.netlify.app/) | [GitHub](https://github.com/DaveSimoes/Developer.Portfolio) | HTML, CSS, JavaScript |
308 | | Saahil Dutta |  | [saahild.com](https://saahild.com/) | [GitHub](https://github.com/NeonGamerBot-QK/saahild.com) | Reactjs |
309 | | Moshood Sanusi |  | [olawale.dev](https://www.olawale.dev/) | None | ReactJS, TailwindCSS, GSAP |
310 | | MD Affan Asghar |  | [affancoder.github.io/Portfolio_Website](https://affancoder.github.io/Portfolio_Website/) | [GitHub](https://github.com/affancoder/Portfolio_Website) | HTML, CSS, JavaScript |
311 | | DEBAJYOTI GHOSH |  | [convolexa-2503.web.app](https://convolexa-2503.web.app/) | None | React JS |
312 | | Muhammad Naeem Tahir |  | [muhammadnaeemtahir.github.io](https://muhammadnaeemtahir.github.io/) | [GitHub](https://github.com/muhammadnaeemtahir/muhammadnaeemtahir.github.io) | HTML, CSS, JavaScript, Bootstrap |
313 | | Aravind Ashokan |  | [aravindashokan.tech](https://aravindashokan.tech) | [GitHub](https://github.com/code-lover636/aravindashokan) | ReactJS, CSS(SASS), Framer Motion, SwiperJS, EmailJS |
314 | | Moinak Majumdar |  | [moinak05.portfolio](https://moinak05.vercel.app/) | [GitHub](https://github.com/Moinak-Majumdar/portfolio) | Next.js, TypeScript, Framer Motion, TailwindCss |
315 | | Saleh Salehizadeh |  | [SirSaleh.github.io](https://sirsaleh.github.io/Portfolio/) | [GitHub](https://github.com/SirSaleh/Portfolio) | Nextjs, Tailwind CSS, TypeScript |
316 | | Vijay Kumar Reddy Talakola |  | [talakolavijay.vercel.app](https://talakolavijay.vercel.app/) | [GitHub](https://github.com/VijayKumarReddyTalakola/MyPortFolio) | Reactjs, Tailwind CSS, AOS |
317 | | Nisarg Kavi |  | [nisargkavi.in](https://www.nisargkavi.in/) | None | Nextjs, Tailwind CSS, Framer Motion, AnimeJS |
318 | | Malik Naik |  | [maliknaik.me](https://www.maliknaik.me/) | None | HTML, CSS, Bootstrap, and JavaScript |
319 | | Kshitij Gehlot |  | [KDGehlot2003.github.io](https://kdgehlot2003.github.io/Portfolio/) | [GitHub](https://github.com/KDGehlot2003/Portfolio) | HTML, CSS, Bootstrap, and JavaScript |
320 | | Johnson Takashi |  | [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 |  | [shivarajkolekar.com](https://shivaraj-portfolio.vercel.app/) | [Github](https://github.com/Shivaraj-Kolekar/portfolio) | HTML, TailwindCSS, Javascript |
322 | | Shubham Gaur |  | [shubhamessier.github.io](https://shubhamessier.github.io/portfolio) | [GitHub](https://github.com/shubhamessier/portfolio) | HTML, CSS and JavaScript |
323 | | Atijosan Iyanuoluwa |  | [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://mahmoudibrahim.me) | None | React, Strapi, Bootstrap, TypeScript, Netlify |
325 | | Archit Agrawal |  | [archit-agrawal-portfolio.vercel.app](https://archit-agrawal-portfolio.vercel.app/) | [GitHub](https://github.com/ArchitAgrawal25/Portfolio) | HTML, CSS and JavaScript |
326 | | Vaishnavi Shelke |  | [vsp-portfolio.netlify.app](https://vsp-portfolio.netlify.app) | [GitHub](https://github.com/vaishnavishelke2021/Portfolio-Website) | HTML, CSS, Bootstrap, Netlify |
327 | | Timothy Klint |  | [tjklint.github.io](https://tjklint.github.io) | [GitHub](https://github.com/tjklint/tjklint.github.io) | React, TypeScript, SASS |
328 | | Pravin Mane |  | [pravinmane.com](https://www.pravinmane.com/) | [GitHub](https://github.com/pravinmane1/Portfolio) | Angular, HTML, SCSS, TypeScript, gh-pages |
329 | | yuxxeun |  | [yuxxeun.xyz](https://yuxxeun.xyz) | [yuxxeun](https://github.com/yuxxeun) | Next.js, Tailwind, Supabase, Vercel |
330 | | Shivam Javiya |  | [shivamjaviya.netlify.app](https://shivamjaviya.netlify.app/) | [GitHub](https://github.com/ShivamJaviya/Shivam_Portfolio) | HTML, CSS, JS |
331 | | Krishnakumar Valliappan |  | [krishnakumar.dev](https://www.krishnakumar.dev/) | [GitHub](https://github.com/krishnavalliappan/portfolio-website) | Next.js, Framer, TypeScript, TailwindCSS, shadcn/ui |
332 | | Gokul Raja |  | [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 |  | [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.codes](https://jiseeeh.codes) | [GitHub](https://github.com/Jiseeeh/portfolio-revamp) | Next.js, TailwindCSS, GSAP, Vercel, PostHog |
335 | | Ghulam Ahmed |  | [gahmed.com](https://gahmed.com) | [GitHub](https://github.com/theghulam) | Astro, Solid.js, TypeScript, TailwindCSS |
336 | | Carson Spriggs |  | [carsonsgit.github.io](https://carsonsgit.github.io/) | [GitHub](https://github.com/carsonSgit/carsonsgit.github.io) | React, TypeScript, SCSS |
337 | | Nicholas Gannon |  | [nicholasgannon.io](https://nicholasgannon.io/) | [GitHub](https://github.com/NicholasGannon/Portfolio) | HTML, TailwindCSS, JavaScript |
338 | | Chung Nguyen Thanh |  | [chunhthanhde.github.io](https://chunhthanhde.github.io) | [GitHub](https://github.com/chunhthanhde) | Flutter, Dart, Github Pages |
339 | | Babatunde Afreka |  | [bafrekauiux.framer.website](https://bafrekauiux.framer.website/) | None | Framer, React |
340 | | LNLenost |  | [lnlenost.netlify.app](https://lnlenost.netlify.app/) | [GitHub](https://github.com/LNLenost/lnlenost.github.io) | HTML, SASS, JavaScript |
341 | | Shivam Panchal |  | [shivampanchal.vercel.app](https://shivampanchal.vercel.app/) | None | ReactJS, CSS |
342 | | Mariya Baig |  | [mariyabaig.vercel.app](https://mariyabaig.vercel.app/) | None | NextJS, TailwindCSS |
343 | | Ketuman |  | [k2maan.vercel.app](https://k2maan.vercel.app/) | None | NextJS, TailwindCSS |
344 | | Adeola Badero |  | [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.dev](iamtj.dev) | [GitHub](https://github.com/i-am-tj/iamtj.dev) | React, Next.js, TypeScript, Tailwind CSS |
346 | | Akshay |  | [devakshay.vercel.app](https://devakshay.vercel.app) | [GitHub](https://github.com/Akshayp2002) | Angular,TypeScript,HTML, Tailwind CSS, Vercel, Flowbite |
347 | | Hari Thatikonda |  | [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.framer.website](https://sawad.framer.website/) | None | Framer |
349 | | Carlos Dubón |  | [carlosdubon.dev](https://carlosdubon.dev) | None | Next.js 14 (App Router), TailwindCSS, TypeScript, Framer Motion, Velite |
350 | | Umesh Nagare |  | [umeshnagare.vercel.app](https://umeshnagare.vercel.app) | [GitHub](https://github.com/Algoture/PortFolio) | React, Vercel, CSS, Locomotive Scroll |
351 | | Muhammad Essa |  | [muhammadessa.vercel.app](https://muhammadessa.vercel.app/) | [GitHub](https://github.com/imuhammadessa) | React.js, Next.js, Tailwind, MUI and Vercel. |
352 | | Farouk Mustapha |  | [devfarouk.vercel.app](https://devfarouk.vercel.app/) | [GitHub](https://github.com/Farouk-ayo/devfarouk) | NextJs, Typescript, TailwindCSS, AOS |
353 | | Sachin Desai |  | [sachindesai.in](https://sachindesai.in) | [GitHub](https://github.com/sachind3/finalportfolio) | Next Js 14, Tailwind CSS Vercel, GSAP, CSS, Locomotive Scroll |
354 | | Rauliqbal |  | [rauliqbal.vercel.app](https://rauliqbal.vercel.app/) | None | Next JS, TypeScript, Tailwind CSS, Framer Motion, Supabase |
355 | | TSolutionsX |  | [techsolutionsx.vercel.app](https://techsolutionsx.vercel.app/) | None | NextJS, TailwindCSS |
356 | | Chun-Ho (Hugo) Lin |  | [1chooo.com](https://1chooo.com/) | [GitHub](https://github.com/1chooo/1chooo.com) | ReactJS, Next.js, Nextra (V3), TypeScript |
357 | | Priyanshu Tiwari |  | [priyanshu-tiwari.vercel.app](https://priyanshu-tiwari.vercel.app/) | [GitHub](https://github.com/priyanshtiwari001/portfolio) | NextJS, TailwindCSS, TypeScript, ThreeJS |
358 | | Durgesh |  | [yodkwtf.com](https://yodkwtf.com/) | [GitHub](https://github.com/yodkwtf/yodkwtf.com) | ReactJS, CSS, Context API, Airtable CMS |
359 | | Mihir |  | [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 |  | [adityabansal.tech](https://www.adityabansal.tech/) | None | Three js, R3F, React Js, Framer Motion, GSAP |
361 | | Nafis Mahmud Ayon |  | [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ş |  | [berkaykrks.com](https://berkaykrks.netlify.app/) | [GitHub](https://github.com/berkaykrks/personal-website) | HTML, CSS, JS |
363 | | Salim Rutaganda |  | [rsalim.vercel.app](https://www.rsalim.vercel.app/) | [GitHub](https://github.com/rutaganda-salim/devfolio) | React, Next.js, Tailwindcss, TypeScript |
364 | | Culture DevOps |  | [culturedevops.com](https://culturedevops.com/en) | [GitHub](https://github.com/CultureDevOps/blog) | Next.js, Tailwind CSS, i18n |
365 |
--------------------------------------------------------------------------------