gitextract_lyruc8m7/ ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public/ │ ├── desktop_pc/ │ │ ├── license.txt │ │ └── scene.gltf │ └── planet/ │ ├── license.txt │ └── scene.gltf ├── src/ │ ├── App.jsx │ ├── assets/ │ │ └── index.js │ ├── components/ │ │ ├── About.jsx │ │ ├── Contact.jsx │ │ ├── Experience.jsx │ │ ├── Feedbacks.jsx │ │ ├── Hero.jsx │ │ ├── Loader.jsx │ │ ├── Navbar.jsx │ │ ├── Tech.jsx │ │ ├── Works.jsx │ │ ├── canvas/ │ │ │ ├── Ball.jsx │ │ │ ├── Computers.jsx │ │ │ ├── Earth.jsx │ │ │ ├── Stars.jsx │ │ │ └── index.js │ │ └── index.js │ ├── constants/ │ │ └── index.js │ ├── hoc/ │ │ ├── SectionWrapper.jsx │ │ └── index.js │ ├── index.css │ ├── main.jsx │ ├── styles.js │ └── utils/ │ └── motion.js ├── tailwind.config.cjs └── vite.config.js