├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── images │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── img4.png │ ├── img_main.png │ └── stats.svg ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── apple-icon.png ├── favicon.ico ├── globals.css ├── icon1.png ├── icon2.png ├── layout.tsx └── page.tsx ├── components ├── main │ ├── encryption.tsx │ ├── footer.tsx │ ├── hero.tsx │ ├── navbar.tsx │ ├── projects.tsx │ ├── skills.tsx │ └── star-background.tsx └── sub │ ├── hero-content.tsx │ ├── project-card.tsx │ ├── skill-data-provider.tsx │ └── skill-text.tsx ├── config └── index.ts ├── constants └── index.ts ├── lib ├── motion.ts └── utils.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── hero-bg.svg ├── lock-main.png ├── lock-top.png ├── logo.png ├── projects │ ├── project-1.png │ ├── project-2.png │ └── project-3.png ├── skills │ ├── css.png │ ├── docker.png │ ├── express.png │ ├── figma.png │ ├── firebase.png │ ├── framer.png │ ├── go.png │ ├── graphql.png │ ├── html.png │ ├── js.png │ ├── mongodb.png │ ├── mui.png │ ├── mysql.png │ ├── next.png │ ├── node.png │ ├── postgresql.png │ ├── prisma.png │ ├── react.png │ ├── reactnative.png │ ├── reactquery.png │ ├── redux.png │ ├── stripe.png │ ├── tailwind.png │ ├── tauri.png │ └── ts.png └── videos │ ├── blackhole.webm │ ├── encryption-bg.webm │ └── skills-bg.webm ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [sanidhyy] 4 | patreon: sanidhy 5 | custom: https://www.buymeacoffee.com/sanidhy 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/.github/images/img1.png -------------------------------------------------------------------------------- /.github/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/.github/images/img2.png -------------------------------------------------------------------------------- /.github/images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/.github/images/img3.png -------------------------------------------------------------------------------- /.github/images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/.github/images/img4.png -------------------------------------------------------------------------------- /.github/images/img_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/.github/images/img_main.png -------------------------------------------------------------------------------- /.github/images/stats.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 122 | 123 | 124 | 125 | 95 126 | Performance 127 | 128 | 129 | 130 | 131 | 92 132 | Accessibility 133 | 134 | 135 | 136 | 137 | 96 138 | Best Practices 139 | 140 | 141 | 142 | 143 | 90 144 | SEO 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | Progressive 211 | Web App 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 0-49 227 | 50-89 228 | 90-100 229 | 230 | 231 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct - Space Portfolio 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to make participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to a positive environment for our 15 | community include: 16 | 17 | * Demonstrating empathy and kindness toward other people 18 | * Being respectful of differing opinions, viewpoints, and experiences 19 | * Giving and gracefully accepting constructive feedback 20 | * Accepting responsibility and apologizing to those affected by our mistakes, 21 | and learning from the experience 22 | * Focusing on what is best not just for us as individuals, but for the 23 | overall community 24 | 25 | Examples of unacceptable behavior include: 26 | 27 | * The use of sexualized language or imagery, and sexual attention or 28 | advances 29 | * Trolling, insulting or derogatory comments, and personal or political attacks 30 | * Public or private harassment 31 | * Publishing others' private information, such as a physical or email 32 | address, without their explicit permission 33 | * Other conduct which could reasonably be considered inappropriate in a 34 | professional setting 35 | 36 | ## Our Responsibilities 37 | 38 | Project maintainers are responsible for clarifying and enforcing our standards of 39 | acceptable behavior and will take appropriate and fair corrective action in 40 | response to any behavior that they deem inappropriate, 41 | threatening, offensive, or harmful. 42 | 43 | Project maintainers have the right and responsibility to remove, edit, or reject 44 | comments, commits, code, wiki edits, issues, and other contributions that are 45 | not aligned to this Code of Conduct, and will 46 | communicate reasons for moderation decisions when appropriate. 47 | 48 | ## Scope 49 | 50 | This Code of Conduct applies within all community spaces, and also applies when 51 | an individual is officially representing the community in public spaces. 52 | Examples of representing our community include using an official e-mail address, 53 | posting via an official social media account, or acting as an appointed 54 | representative at an online or offline event. 55 | 56 | ## Enforcement 57 | 58 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 59 | reported to the community leaders responsible for enforcement at . 60 | All complaints will be reviewed and investigated promptly and fairly. 61 | 62 | All community leaders are obligated to respect the privacy and security of the 63 | reporter of any incident. 64 | 65 | ## Enforcement Guidelines 66 | 67 | Community leaders will follow these Community Impact Guidelines in determining 68 | the consequences for any action they deem in violation of this Code of Conduct: 69 | 70 | ### 1. Correction 71 | 72 | **Community Impact**: Use of inappropriate language or other behavior deemed 73 | unprofessional or unwelcome in the community. 74 | 75 | **Consequence**: A private, written warning from community leaders, providing 76 | clarity around the nature of the violation and an explanation of why the 77 | behavior was inappropriate. A public apology may be requested. 78 | 79 | ### 2. Warning 80 | 81 | **Community Impact**: A violation through a single incident or series 82 | of actions. 83 | 84 | **Consequence**: A warning with consequences for continued behavior. No 85 | interaction with the people involved, including unsolicited interaction with 86 | those enforcing the Code of Conduct, for a specified period of time. This 87 | includes avoiding interactions in community spaces as well as external channels 88 | like social media. Violating these terms may lead to a temporary or 89 | permanent ban. 90 | 91 | ### 3. Temporary Ban 92 | 93 | **Community Impact**: A serious violation of community standards, including 94 | sustained inappropriate behavior. 95 | 96 | **Consequence**: A temporary ban from any sort of interaction or public 97 | communication with the community for a specified period of time. No public or 98 | private interaction with the people involved, including unsolicited interaction 99 | with those enforcing the Code of Conduct, is allowed during this period. 100 | Violating these terms may lead to a permanent ban. 101 | 102 | ### 4. Permanent Ban 103 | 104 | **Community Impact**: Demonstrating a pattern of violation of community 105 | standards, including sustained inappropriate behavior, harassment of an 106 | individual, or aggression toward or disparagement of classes of individuals. 107 | 108 | **Consequence**: A permanent ban from any sort of public interaction within 109 | the community. 110 | 111 | ## Attribution 112 | 113 | This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org/), version 114 | [1.4](https://www.contributor-covenant.org/version/1/4/code-of-conduct/code_of_conduct.md) and 115 | [2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md), 116 | and was generated by [contributing-gen](https://github.com/bttger/contributing-gen). 117 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributing to Space Portfolio 3 | 4 | First off, thanks for taking the time to contribute! ❤️ 5 | 6 | All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 7 | 8 | > And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: 9 | > - Star the project 10 | > - Tweet about it 11 | > - Refer this project in your project's readme 12 | > - Mention the project at local meetups and tell your friends/colleagues 13 | 14 | 15 | ## Table of Contents 16 | 17 | - [Code of Conduct](#code-of-conduct) 18 | - [I Have a Question](#i-have-a-question) 19 | - [I Want To Contribute](#i-want-to-contribute) 20 | - [Reporting Bugs](#reporting-bugs) 21 | - [Suggesting Enhancements](#suggesting-enhancements) 22 | - [Your First Code Contribution](#your-first-code-contribution) 23 | - [Improving The Documentation](#improving-the-documentation) 24 | - [Styleguides](#styleguides) 25 | - [Commit Messages](#commit-messages) 26 | - [Join The Project Team](#join-the-project-team) 27 | 28 | 29 | ## Code of Conduct 30 | 31 | This project and everyone participating in it is governed by the 32 | [Space Portfolio Code of Conduct](https://github.com/sanidhyy/space-portfolioblob/master/CODE_OF_CONDUCT.md). 33 | By participating, you are expected to uphold this code. Please report unacceptable behavior 34 | to . 35 | 36 | 37 | ## I Have a Question 38 | 39 | > If you want to ask a question, we assume that you have read the available [Documentation](https://github.com/sanidhyy/space-portfolio/wiki). 40 | 41 | Before you ask a question, it is best to search for existing [Issues](https://github.com/sanidhyy/space-portfolio/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. 42 | 43 | If you then still feel the need to ask a question and need clarification, we recommend the following: 44 | 45 | - Open an [Issue](https://github.com/sanidhyy/space-portfolio/issues/new). 46 | - Provide as much context as you can about what you're running into. 47 | - Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant. 48 | 49 | We will then take care of the issue as soon as possible. 50 | 51 | ## I Want To Contribute 52 | 53 | > ### Legal Notice 54 | > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license. 55 | 56 | ### Reporting Bugs 57 | 58 | 59 | #### Before Submitting a Bug Report 60 | 61 | A good bug report shouldn't leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible. 62 | 63 | - Make sure that you are using the latest version. 64 | - Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://github.com/sanidhyy/space-portfolio/wiki). If you are looking for support, you might want to check [this section](#i-have-a-question)). 65 | - To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/sanidhyy/space-portfolioissues?q=label%3Abug). 66 | - Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. 67 | - Collect information about the bug: 68 | - Stack trace (Traceback) 69 | - OS, Platform and Version (Windows, Linux, macOS, x86, ARM) 70 | - Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. 71 | - Possibly your input and the output 72 | - Can you reliably reproduce the issue? And can you also reproduce it with older versions? 73 | 74 | 75 | #### How Do I Submit a Good Bug Report? 76 | 77 | > You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to . 78 | 79 | We use GitHub issues to track bugs and errors. If you run into an issue with the project: 80 | 81 | - Open an [Issue](https://github.com/sanidhyy/space-portfolio/issues/new). (Since we can't be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.) 82 | - Explain the behavior you would expect and the actual behavior. 83 | - Please provide as much context as possible and describe the *reproduction steps* that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case. 84 | - Provide the information you collected in the previous section. 85 | 86 | Once it's filed: 87 | 88 | - The project team will label the issue accordingly. 89 | - A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps and mark the issue as `needs-repro`. Bugs with the `needs-repro` tag will not be addressed until they are reproduced. 90 | - If the team is able to reproduce the issue, it will be marked `needs-fix`, as well as possibly other tags (such as `critical`), and the issue will be left to be [implemented by someone](#your-first-code-contribution). 91 | 92 | ### Suggesting Enhancements 93 | 94 | This section guides you through submitting an enhancement suggestion for Space Portfolio, **including completely new features and minor improvements to existing functionality**. Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions. 95 | 96 | 97 | #### Before Submitting an Enhancement 98 | 99 | - Make sure that you are using the latest version. 100 | - Read the [documentation](https://github.com/sanidhyy/space-portfolio/wiki) carefully and find out if the functionality is already covered, maybe by an individual configuration. 101 | - Perform a [search](https://github.com/sanidhyy/space-portfolio/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. 102 | - Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library. 103 | 104 | 105 | #### How Do I Submit a Good Enhancement Suggestion? 106 | 107 | Enhancement suggestions are tracked as [GitHub issues](https://github.com/sanidhyy/space-portfolio/issues). 108 | 109 | - Use a **clear and descriptive title** for the issue to identify the suggestion. 110 | - Provide a **step-by-step description of the suggested enhancement** in as many details as possible. 111 | - **Describe the current behavior** and **explain which behavior you expected to see instead** and why. At this point you can also tell which alternatives do not work for you. 112 | - You may want to **include screenshots and animated GIFs** which help you demonstrate the steps or point out the part which the suggestion is related to. You can use [this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux. 113 | - **Explain why this enhancement would be useful** to most Space Portfolio users. You may also want to point out the other projects that solved it better and which could serve as inspiration. 114 | 115 | 116 | ## Attribution 117 | This guide is based on the **contributing-gen**. [Make your own](https://github.com/bttger/contributing-gen)! 118 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Sanidhya Kumar Verma 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Modern Space Theme Portfolio using Next.js 14 and Three.js 4 | 5 | ![Modern Space Theme Portfolio using Next.js 14 and Three.js](/.github/images/img_main.png "Modern Space Theme Portfolio using Next.js 14 and Three.js") 6 | 7 | [![Ask Me Anything!](https://flat.badgen.net/static/Ask%20me/anything?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy "Ask Me Anything!") 8 | [![GitHub license](https://flat.badgen.net/github/license/sanidhyy/space-portfolio?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/blob/main/LICENSE "GitHub license") 9 | [![Maintenance](https://flat.badgen.net/static/Maintained/yes?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/commits/main "Maintenance") 10 | [![GitHub branches](https://flat.badgen.net/github/branches/sanidhyy/space-portfolio?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/branches "GitHub branches") 11 | [![Github commits](https://flat.badgen.net/github/commits/sanidhyy/space-portfolio?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/commits "Github commits") 12 | [![GitHub issues](https://flat.badgen.net/github/issues/sanidhyy/space-portfolio?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/issues "GitHub issues") 13 | [![GitHub pull requests](https://flat.badgen.net/github/prs/sanidhyy/space-portfolio?icon=github&color=black&scale=1.01)](https://github.com/sanidhyy/space-portfolio/pulls "GitHub pull requests") 14 | [![Netlify Status](https://api.netlify.com/api/v1/badges/451ed0e0-3541-474e-896a-4987e30a7722/deploy-status)](https://spaceportfolio.netlify.app/ "Netlify Status") 15 | 16 | 17 |
18 | 19 | 20 | 21 | # :notebook_with_decorative_cover: Table of Contents 22 | 23 | 24 | 25 | - [Folder Structure](#bangbang-folder-structure) 26 | - [Getting Started](#toolbox-getting-started) 27 | - [Screenshots](#camera-screenshots) 28 | - [Tech Stack](#gear-tech-stack) 29 | - [Stats](#wrench-stats) 30 | - [Contribute](#raised_hands-contribute) 31 | - [Acknowledgements](#gem-acknowledgements) 32 | - [Buy Me a Coffee](#coffee-buy-me-a-coffee) 33 | - [Follow Me](#rocket-follow-me) 34 | - [Learn More](#books-learn-more) 35 | - [Deploy on Vercel](#page_with_curl-deploy-on-vercel) 36 | - [Give A Star](#star-give-a-star) 37 | - [Star History](#star2-star-history) 38 | - [Give A Star](#star-give-a-star) 39 | 40 |
41 | 42 | ## :bangbang: Folder Structure 43 | 44 | Here is the folder structure of this app. 45 | 46 | ```bash 47 | space-portfolio/ 48 | |- app/ 49 | |-- favicon.ico 50 | |-- globals.css 51 | |-- layout.tsx 52 | |-- page.tsx 53 | |- components/ 54 | |-- main/ 55 | |--- encryption.tsx 56 | |--- footer.tsx 57 | |--- hero.tsx 58 | |--- navbar.tsx 59 | |--- projects.tsx 60 | |--- skills.tsx 61 | |--- star-background.tsx 62 | |-- sub/ 63 | |--- hero-content.tsx 64 | |--- project-card.tsx 65 | |--- skill-data-provider.tsx 66 | |--- skill-text.tsx 67 | |- config/ 68 | |-- index.ts 69 | |- constants/ 70 | |-- index.ts 71 | |- lib/ 72 | |-- motion.ts 73 | |-- utils.ts 74 | |- public/ 75 | |-- projects/ 76 | |-- skills/ 77 | |-- videos/ 78 | |-- hero-bg.svg 79 | |-- lock-main.png 80 | |-- lock-top.png 81 | |-- logo.png 82 | |- .eslintrc.json 83 | |- .gitignore 84 | |- next.config.js 85 | |- package-lock.json 86 | |- package.json 87 | |- postcss.config.js 88 | |- tailwind.config.ts 89 | |- tsconfig.json 90 | ``` 91 | 92 |
93 | 94 | ## :toolbox: Getting Started 95 | 96 | 1. Make sure **Git** and **NodeJS** is installed. 97 | 98 | 2. Clone this repository to your local computer. 99 | 100 | 3. Open terminal in root directory. Run `npm install --legacy-peer-deps` or `yarn install --legacy-peer-deps`. 101 | 102 | 4. Now app is fully configured 👍 and you can start using this app using `npm run dev` or `yarn dev`. 103 | 104 | ## :camera: Screenshots: 105 | 106 | ![Modern UI/UX](/.github/images/img1.png "Modern UI/UX") 107 | 108 | ![Showcase your skills](/.github/images/img2.png "Showcase your skills") 109 | 110 | ![Built with Typescript](/.github/images/img3.png "Built with Typescript") 111 | 112 | ![Showcase your projects](/.github/images/img4.png "Showcase your projects") 113 | 114 | ## :gear: Tech Stack 115 | 116 | [![React JS](https://skillicons.dev/icons?i=react "React JS")](https://react.dev/ "React JS") [![Next JS](https://skillicons.dev/icons?i=next "Next JS")](https://nextjs.org/ "Next JS") [![Typescript](https://skillicons.dev/icons?i=ts "Typescript")](https://www.typescriptlang.org/ "Typescript") [![Tailwind CSS](https://skillicons.dev/icons?i=tailwind "Tailwind CSS")](https://tailwindcss.com/ "Tailwind CSS") [![Netlify](https://skillicons.dev/icons?i=netlify "Netlify")](https://netlify.app/ "Netlify") [![Three.js](https://skillicons.dev/icons?i=threejs "Three.js")](https://threejs.org/ "Three.js") 117 | 118 | ## :wrench: Stats 119 | 120 | [![Stats for Space Portfolio](/.github/images/stats.svg "Stats for Space Portfolio")](https://pagespeed.web.dev/analysis/https-spaceportfolio-netlify-app/2efbmg117d "Stats for Space Portfolio") 121 | 122 | ## :raised_hands: Contribute 123 | 124 | You might encounter some bugs while using this app. You are more than welcome to contribute. Just submit changes via pull request and I will review them before merging. Make sure you follow community guidelines. 125 | 126 | ## :gem: Acknowledgements 127 | 128 | Useful resources and dependencies that are used in Space Portfolio. 129 | 130 | - [@heroicons/react](https://www.npmjs.com/package/@heroicons/react): ^2.1.1 131 | - [@react-three/drei](https://www.npmjs.com/package/@react-three/drei): ^9.93.0 132 | - [@react-three/fiber](https://www.npmjs.com/package/@react-three/fiber): ^8.15.13 133 | - [clsx](https://www.npmjs.com/package/clsx): ^2.1.0 134 | - [framer-motion](https://www.npmjs.com/package/framer-motion): ^10.17.12 135 | - [next](https://www.npmjs.com/package/next): 14.0.4 136 | - [react](https://www.npmjs.com/package/react): ^18 137 | - [react-dom](https://www.npmjs.com/package/react-dom): ^18 138 | - [react-icons](https://www.npmjs.com/package/react-icons): ^5.0.1 139 | - [react-intersection-observer](https://www.npmjs.com/package/react-intersection-observer): ^9.5.3 140 | - [tailwind-merge](https://www.npmjs.com/package/tailwind-merge): ^2.2.0 141 | - [three](https://www.npmjs.com/package/three): ^0.160.0 142 | - [@types/node](https://www.npmjs.com/package/@types/node): ^20 143 | - [@types/react](https://www.npmjs.com/package/@types/react): ^18 144 | - [@types/react-dom](https://www.npmjs.com/package/@types/react-dom): ^18 145 | - [autoprefixer](https://www.npmjs.com/package/autoprefixer): ^10.0.1 146 | - [eslint](https://www.npmjs.com/package/eslint): ^8 147 | - [eslint-config-next](https://www.npmjs.com/package/eslint-config-next): 14.0.4 148 | - [postcss](https://www.npmjs.com/package/postcss): ^8 149 | - [tailwindcss](https://www.npmjs.com/package/tailwindcss): ^3.3.0 150 | - [typescript](https://www.npmjs.com/package/typescript): ^5 151 | 152 | ## :coffee: Buy Me a Coffee 153 | 154 | [](https://www.buymeacoffee.com/sanidhy "Buy me a Coffee") 155 | 156 | ## :rocket: Follow Me 157 | 158 | [![GitHub followers](https://img.shields.io/github/followers/sanidhyy?style=social&label=Follow&maxAge=2592000)](https://github.com/sanidhyy "Follow Me") 159 | [![Twitter](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Ftwitter.com%2FTechnicalShubam)](https://twitter.com/intent/tweet?text=Check+out+this+amazing+app:&url=https%3A%2F%2Fgithub.com%2Fsanidhyy%2Fspace-portfolio "Tweet") 160 | [![YouTube](https://img.shields.io/youtube/channel/subscribers/UCNAz_hUVBG2ZUN8TVm0bmYw)](https://www.youtube.com/@OPGAMER. "Subscribe my YouTube Channel") 161 | 162 | ## :books: Learn More 163 | 164 | To learn more about Next.js, take a look at the following resources: 165 | 166 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 167 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 168 | 169 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 170 | 171 | ## :page_with_curl: Deploy on Vercel 172 | 173 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 174 | 175 | Check out [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 176 | 177 | ## :star: Give A Star 178 | 179 | You can also give this repository a star to show more people and they can use this repository. 180 | 181 | ## :star2: Star History 182 | 183 | 184 | 185 | 186 | 187 | Star History Chart 188 | 189 | 190 | 191 |
192 |

(back to top)

193 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/app/apple-icon.png -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap"); 2 | 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; 6 | 7 | .cursive { 8 | font-family: "Cedarville Cursive", cursive; 9 | } 10 | .Welcome-text { 11 | background: linear-gradient( 12 | 0deg, 13 | rgba(255, 255, 255, 0.4), 14 | rgba(255, 255, 255, 0.4) 15 | ), 16 | linear-gradient(90.01deg, #e59cff 0.01%, #ba9cff 50.01%, #9cb2ff 100%); 17 | background-blend-mode: normal, screen; 18 | -webkit-background-clip: text; 19 | background-clip: text; 20 | -webkit-text-fill-color: transparent; 21 | } 22 | .Welcome-box { 23 | isolation: isolate; 24 | overflow: hidden; 25 | align-items: center; 26 | -webkit-backdrop-filter: blur(6px); 27 | backdrop-filter: blur(6px); 28 | border-radius: 32px; 29 | box-shadow: inset 0 -7px 11px #a48fff1f; 30 | display: flex; 31 | 32 | position: relative; 33 | width: -moz-max-content; 34 | width: max-content; 35 | transition: 0.45s cubic-bezier(0.6, 0.6, 0, 1) box-shadow; 36 | } 37 | 38 | .button-primary { 39 | background: linear-gradient( 40 | 180deg, 41 | rgba(60, 8, 126, 0) 0%, 42 | rgba(60, 8, 126, 0.32) 100% 43 | ), 44 | rgba(113, 47, 255, 0.12); 45 | box-shadow: inset 0 0 12px #bf97ff3d; 46 | } 47 | .button-primary:hover { 48 | background: linear-gradient( 49 | 180deg, 50 | rgba(60, 8, 126, 0) 0%, 51 | rgba(60, 8, 126, 0.42) 100% 52 | ), 53 | rgba(113, 47, 255, 0.24); 54 | box-shadow: inset 0 0 12px #bf97ff70; 55 | } 56 | 57 | /* Hide scrollbar for IE, Edge and Firefox */ 58 | .scrollbar-hidden { 59 | -ms-overflow-style: none; /* IE and Edge */ 60 | scrollbar-width: none; /* Firefox */ 61 | } 62 | .scrollbar-hidden::-webkit-scrollbar { 63 | display: none; 64 | } 65 | 66 | html { 67 | scroll-behavior: smooth; 68 | } 69 | -------------------------------------------------------------------------------- /app/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/app/icon1.png -------------------------------------------------------------------------------- /app/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanidhyy/space-portfolio/ee235f718240ce20597c8b88825f6e2ba9f54092/app/icon2.png -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata, Viewport } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import type { PropsWithChildren } from "react"; 4 | 5 | import { Footer } from "@/components/main/footer"; 6 | import { Navbar } from "@/components/main/navbar"; 7 | import { StarsCanvas } from "@/components/main/star-background"; 8 | import { siteConfig } from "@/config"; 9 | import { cn } from "@/lib/utils"; 10 | 11 | import "./globals.css"; 12 | 13 | const inter = Inter({ subsets: ["latin"] }); 14 | 15 | export const viewport: Viewport = { 16 | themeColor: "#030014", 17 | }; 18 | 19 | export const metadata: Metadata = siteConfig; 20 | 21 | export default function RootLayout({ children }: PropsWithChildren) { 22 | return ( 23 | 24 | 30 | 31 | 32 | {children} 33 |