├── .eslintrc.cjs
├── .github
├── ISSUE_TEMPLATE
│ ├── custom.md
│ └── feature_request.md
└── dependabot.yml
├── .gitignore
├── .prettierrc
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── dist
├── _redirects
└── index.html
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
└── _redirects
├── src
├── App.css
├── App.jsx
├── Assets
│ ├── bars.svg
│ ├── images
│ │ ├── 1490.gif
│ │ ├── AboutImage.png
│ │ ├── Gridlinesbuilders.jpg
│ │ ├── adminpanel.jpg
│ │ ├── imagedeveloper.png
│ │ ├── logor.png
│ │ ├── netflix.jpg
│ │ ├── olximage.jpg
│ │ ├── pizza.jpg
│ │ ├── profile.jpg
│ │ └── todolist.jpg
│ └── svg
│ │ └── skills
│ │ ├── adobe-xd.svg
│ │ ├── adobeaudition.svg
│ │ ├── after-effects.svg
│ │ ├── angular.svg
│ │ ├── aws.svg
│ │ ├── azure.svg
│ │ ├── blender.svg
│ │ ├── bootstrap.svg
│ │ ├── bulma.svg
│ │ ├── c.svg
│ │ ├── canva.svg
│ │ ├── capacitorjs.svg
│ │ ├── coffeescript.svg
│ │ ├── cplusplus.svg
│ │ ├── csharp.svg
│ │ ├── css.svg
│ │ ├── dart.svg
│ │ ├── deno.svg
│ │ ├── django.svg
│ │ ├── docker.svg
│ │ ├── fastify.svg
│ │ ├── figma.svg
│ │ ├── firebase.svg
│ │ ├── flutter.svg
│ │ ├── gcp.svg
│ │ ├── gimp.svg
│ │ ├── git.svg
│ │ ├── go.svg
│ │ ├── graphql.svg
│ │ ├── haxe.svg
│ │ ├── html.svg
│ │ ├── illustrator.svg
│ │ ├── ionic.svg
│ │ ├── java.svg
│ │ ├── javascript.svg
│ │ ├── julia.svg
│ │ ├── kotlin.svg
│ │ ├── lightroom.svg
│ │ ├── markdown.svg
│ │ ├── materialui.svg
│ │ ├── matlab.svg
│ │ ├── memsql.svg
│ │ ├── microsoftoffice.svg
│ │ ├── mongoDB.svg
│ │ ├── mysql.svg
│ │ ├── nextJS.svg
│ │ ├── nginx.svg
│ │ ├── numpy.svg
│ │ ├── nuxtJS.svg
│ │ ├── opencv.svg
│ │ ├── photoshop.svg
│ │ ├── php.svg
│ │ ├── picsart.svg
│ │ ├── postgresql.svg
│ │ ├── premierepro.svg
│ │ ├── python.svg
│ │ ├── pytorch.svg
│ │ ├── react.svg
│ │ ├── ruby.svg
│ │ ├── selenium.svg
│ │ ├── sketch.svg
│ │ ├── sqlite.svg
│ │ ├── strapi.svg
│ │ ├── svelte.svg
│ │ ├── swift.svg
│ │ ├── tailwind.svg
│ │ ├── tensorflow.svg
│ │ ├── typescript.svg
│ │ ├── unity.svg
│ │ ├── vitejs.svg
│ │ ├── vue.svg
│ │ ├── vuetifyjs.svg
│ │ ├── webix.svg
│ │ ├── wolframalpha.svg
│ │ └── wordpress.svg
├── components
│ ├── Cards.jsx
│ ├── Cursor.jsx
│ ├── Footer.jsx
│ ├── Header.jsx
│ ├── Pre.jsx
│ └── TypewriterText.jsx
├── data
│ ├── ProjectsList.jsx
│ ├── SkillsData.jsx
│ └── UserData.jsx
├── main.jsx
├── pages
│ ├── About.jsx
│ ├── ArchiveProjects.jsx
│ ├── Contact.jsx
│ ├── Home.jsx
│ ├── Layout.jsx
│ ├── NotFound.jsx
│ └── Project.jsx
└── utils
│ └── SkillsImage.js
├── tailwind.config.js
└── vite.config.js
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | /* eslint-env node */
2 |
3 | module.exports = {
4 | env: { browser: true, es2020: true },
5 | extends: [
6 | 'eslint:recommended',
7 | 'plugin:react/recommended',
8 | 'plugin:react/jsx-runtime',
9 | 'plugin:react-hooks/recommended',
10 | ],
11 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
12 | settings: { react: { version: '18.2' } },
13 | plugins: ['react-refresh'],
14 | rules: {
15 | 'react-refresh/only-export-components': [
16 | 'warn',
17 | { allowConstantExport: true },
18 | ],
19 | },
20 | }
21 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/custom.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Custom issue template
3 | about: Describe this issue template's purpose here.
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.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/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "weekly"
12 |
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "plugins": ["prettier-plugin-tailwindcss"]
3 | }
4 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to Rahul Vijay Portfolio
2 |
3 | Thank you for your interest in contributing to Rahul Vijay's portfolio! Your contributions are valuable and can help enhance the overall quality of the portfolio. Whether you're fixing a bug, adding a feature, or suggesting improvements, your efforts are appreciated.
4 |
5 | ## Getting Started
6 |
7 | To contribute to Rahul Vijay Portfolio, follow these steps:
8 |
9 | 1. Fork the repository on GitHub.
10 | 2. Clone your forked repository to your local machine.
11 |
12 | ```bash
13 | git clone https://github.com/your-username/rahul-vijay-portfolio.git
14 | ```
15 |
16 | 3. Create a new branch for your changes.
17 |
18 | ```bash
19 | git checkout -b feature/your-feature
20 | ```
21 |
22 | 4. Make your changes and commit them.
23 |
24 | ```bash
25 | git commit -m "Add your changes"
26 | ```
27 |
28 | 5. Push your changes to your fork on GitHub.
29 |
30 | ```bash
31 | git push origin feature/your-feature
32 | ```
33 |
34 | 6. Open a pull request in the original repository.
35 |
36 | ## Coding Standards
37 |
38 | - Follow the coding standards and best practices of the project.
39 | - Write clear and concise code.
40 | - Document your code when necessary.
41 |
42 | ## Bug Reports
43 |
44 | If you find a bug in Rahul Vijay Portfolio, please follow these steps:
45 |
46 | 1. Check the existing issues to see if the bug has already been reported.
47 | 2. If not, create a new issue, providing a detailed description of the bug and steps to reproduce it.
48 |
49 | ## Feature Requests
50 |
51 | If you have an idea for a new feature or enhancement, please follow these steps:
52 |
53 | 1. Check the existing issues to see if the feature has already been requested.
54 | 2. If not, create a new issue, describing the feature and its use case.
55 |
56 | ## Pull Requests
57 |
58 | When submitting a pull request, please:
59 |
60 | 1. Provide a clear and concise title.
61 | 2. Describe the purpose and scope of the pull request.
62 | 3. Reference any related issues.
63 | 4. Include before and after screenshots for visual changes.
64 | 5. Ensure that your code passes any existing tests.
65 | 6. Make sure your branch is up-to-date with the latest changes from the main branch.
66 |
67 | ## Code of Conduct
68 |
69 | Please note that Rahul Vijay Portfolio has a Code of Conduct. By participating in this project, you agree to abide by its terms. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at rahulvijay8156@gmail.com.
70 |
71 | ## Thank You
72 |
73 | Thank you for contributing to Rahul Vijay Portfolio! Your time and efforts are highly valued. If you have any questions or need further assistance, feel free to reach out to the project team.
74 |
75 | Happy coding!
76 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 Rahul Vijay
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 | # Personal Portfolio
2 |
3 | 
4 |
5 | 
6 |
7 | This is my personal portfolio website built with React.js and Tailwindcss, showcasing my skills and projects. The website is designed and created entirely by me, Rahul Vijay.
8 |
9 | ## Features
10 |
11 | - **Multiple Pages (React Router):** The website is built with React Router v6 to enable easy access to multiple pages, showcasing various aspects of my skills and projects.
12 |
13 | - **Fully Responsive:** The website is fully responsive and works flawlessly on all devices, ensuring a seamless user experience across different screen sizes.
14 |
15 | - **Modern Design:** The portfolio website features a modern and visually appealing design, utilizing animations to add an interactive touch to the user interface.
16 |
17 | ## Deployment
18 |
19 | The website is correctly bundled with React in production mode, ensuring optimized build for the best performance. The build is minified, and the filenames include hashes to improve caching.
20 |
21 | For more information about deploying a React application, refer to the [deployment documentation](https://facebook.github.io/create-react-app/docs/deployment).
22 |
23 | ## How to Run the Project
24 |
25 | 1. Clone this repository to your local machine:
26 | ```
27 | git clone https://github.com/rahulvijay81/portfolio.git
28 | ```
29 |
30 | 2. Navigate to the project directory:
31 | ```
32 | cd portfolio
33 | ```
34 |
35 | 3. Install the required dependencies:
36 | ```
37 | npm install
38 | ```
39 |
40 | 4. Run the development server:
41 | ```
42 | npm run dev
43 | ```
44 |
45 | The website will be available at `http://localhost:5173` in your web browser.
46 |
47 | ## Featured
48 |
49 | https://reactjsexample.com/24-best-free-open-source-react-portfolio-page-templates/
50 |
51 | ## Contact Information
52 |
53 | You can reach out to me via email at [rahulvijay8156@gmail.com](mailto:rahulvijay8156@gmail.com) or connect with me on [LinkedIn](https://www.linkedin.com/in/rahulvijay81/).
54 |
55 | Feel free to explore my portfolio and learn more about my skills and projects. Thank you for visiting! 🙏
56 |
57 | ---
58 |
59 | Please note that the information provided in this README is subject to change as the project evolves and grows.
60 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/dist/_redirects:
--------------------------------------------------------------------------------
1 | /* /index.html 200
--------------------------------------------------------------------------------
/dist/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 | I'd love to connect and explore exciting opportunities with you!
13 | Whether you have interesting projects, creative ideas, or just want to
14 | chat, please don't hesitate to reach out. My inbox is open 24/7!
15 |
and use to comply with inline elements rule */}
21 | {
24 | navigate("/projectlist");
25 | }}
26 | >
27 | View Full Project Archive
28 | {/* Use className instead of class */}
29 |
30 |
31 |
32 | {/* Keep the icon outside the text block */}
33 |
34 |