Explore the live demonstration of the project: reactjs18-3d-portfolio
3D Portfolio is a well-designed and fully functional portfolio website that is built with React.js and Three.js. It is a fully responsive website that works well on all devices.
Folder Structure
reactjs18-3d-portfolio/
βββ src/
β βββ App.tsx
β βββ globals.css
β βββ main.tsx
β βββ vite.env.d.ts
β βββ components/
β β βββ atoms/
β β β βββ Header.tsx
β β βββ canvas/
β β β βββ Ball.tsx
β β β βββ Computers.tsx
β β β βββ Earth.tsx
β β β βββ Stars.tsx
β β β βββ index.ts
β β βββ layout/
β β β βββ Loader.tsx
β β β βββ Navbar.tsx
β β βββ sections/
β β β βββ About.tsx
β β β βββ Contact.tsx
β β β βββ Experience.tsx
β β β βββ Feedbacks.tsx
β β β βββ Hero.tsx
β β β βββ Tech.tsx
β β β βββ Works.tsx
β β β βββ page.tsx
β β βββ index.ts
β βββ constants/
β β βββ config.ts
β β βββ styles.ts
β β βββ index.ts
β βββ hoc/
β β βββ SectionWrapper.tsx
β β βββ index.ts
β βββ utils/
β β βββ motion.ts
β βββ types/
β β βββ index.d.ts
β βββ assets/
β βββ company/
β β βββ [[...]].{svg,png}
β βββ tech/
β β βββ [[...]].{svg,png}
β βββ [[...]].{svg,png}
β βββ index.ts
βββ public/
β βββ desktop_pc
β β βββ textures/[[...]].png
β β βββ license.txt
β β βββ scene.bin
β β βββ scene.gltf
β βββ planet
β β βββ textures/[[...]].png
β β βββ license.txt
β β βββ scene.bin
β β βββ scene.gltf
β βββ logo.png
β βββ logo.svg
βββ .env
βββ .eslintignore
βββ .eslintrc.cjs
βββ .gitignore
βββ .prettierignore
βββ .prettierrc.cjs
βββ index.html
βββ LICENSE
βββ README.md
βββ package.json
βββ postcss.config.cjs
βββ tailwind.config.cjs
βββ tsconfig.json
βββ tsconfig.node.json
βββ vite.config.js
Table of Contents
3D Portfolio is built using the following technologies:
- TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
- Vite: Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects.
- React.js: React is a free and open-source front-end JavaScript library for building user interfaces or UI components.
- Three.js: Three.js is a cross-browser JavaScript library and application programming interface used to create and display animated 3D computer graphics in a web browser using WebGL.
- Framer Motion: Framer Motion is a production-ready motion library for React.
- Tailwind CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
- ESLint: ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.
- Prettier: Prettier is an opinionated code formatter.
- Vercel: Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web.
To get this project up and running in your development environment, follow these step-by-step instructions.
In order to install and run this project locally, you would need to have the following installed on your local machine.
Step 0:
Note VITE_EMAILJS_SERVICE_ID
, VITE_EMAILJS_TEMPLATE_ID
, and VITE_EMAIL_JS_ACCESS_TOKEN
environment
variables in .env
file.
Step 1:
Download or clone this repo by using the link below:
git clone https://github.com/ladunjexa/reactjs18-3d-portfolio.git
Step 2:
Execute the following command in the root directory of the downloaded repo in order to install dependencies:
npm install
Step 3:
Execute the following command in order to run the development server locally:
npm run dev
Step 4:
Open http://localhost:5173 with your browser to see the result.
All scripts are defined in the package.json
file. Here is a list of all scripts:
Script | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:5137 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Boot up a local static web server |
npm run lint |
Run ESLint |
npm run ts:check |
Perform type-checking |
Environment variables[^3] can be used for configuration. They must be set before running the app.
Environment variables are variables that are set in the operating system or shell, typically used to configure programs.
React.js 18 3D Portfolio uses EmailJS as external service. You need to create an account and get the required credentials to run the app.
Create a .env
file in the root directory of the project and add the following environment
variables:
VITE_EMAILJS_SERVICE_ID=<VITE_EMAILJS_SERVICE_ID>
VITE_EMAILJS_TEMPLATE_ID=<VITE_EMAILJS_TEMPLATE_ID>
VITE_EMAIL_JS_ACCESS_TOKEN=<VITE_EMAIL_JS_ACCESS_TOKEN>
You can create an optimized production build with the following command:
npm run build
The easiest way to deploy this Next.js app is to use the Vercel Platform.
You can also deploy this Next.js app with Netlify.
Check out Next.js deployment documentation for more details.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
To fix a bug or enhance an existing module, follow these steps:
- Fork the repo
- Create a new branch (
git checkout -b improve-feature
) - Make the appropriate changes in the files
- Commit your changes (
git commit -am 'Improve feature'
) - Push to the branch (
git push origin improve-feature
) - Create a Pull Request π
If you find a bug (failure of a module to execute its intended function), kindly open an issue here by including the issue with a title and clear description.
If you'd like to request a new function, feel free to do so by opening an issue here. Please include sample queries and their corresponding results.
I'd like to express my gratitude to the following people who helped me with this project and made it possible:
- Tailwind CSS
- Three.js
- Framer Motion
- React Vertical Timeline Component
- React Parallax Tilt
- Maath
- EmailJS
- ESLint
- Prettier
- Vercel
- JavaScript Mastery
Three.js 3D Portfolio is open source software licensed as MIT and is free to use β See LICENSE for more details.