├── .gitattributes ├── .gitignore ├── README.md ├── desktop.ini ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── airplane.png ├── arrow_next.svg ├── car.png ├── car_card.png ├── card1.png ├── card2.png ├── card3.png ├── card4.png ├── circle.svg ├── cross.svg ├── drag.png ├── ecommerce.png ├── ecommerce_card.png ├── email.svg ├── emilian.svg ├── engine_loop.wav ├── everloving.mp3 ├── gallery.png ├── github.svg ├── hambuger.svg ├── hisashi.mp3 ├── icons │ ├── css.svg │ ├── ex.svg │ ├── git.svg │ ├── github.svg │ ├── html.svg │ ├── mongodb.svg │ ├── motion.svg │ ├── next.svg │ ├── nodejs.svg │ ├── react.svg │ ├── redux.svg │ ├── sass.svg │ ├── tailwind.svg │ └── ts.svg ├── instagram.svg ├── linkedin.svg ├── phone.svg ├── plane_left.png ├── plane_right.png ├── play_off.svg ├── play_on.svg ├── play_store.png ├── profile_pic.png ├── saturn.jpg ├── testimonial1.png ├── testimonial2.png ├── testimonial3.png ├── twitter.svg ├── vector.svg └── youtube.svg ├── src ├── assets │ ├── aircarft_biplane │ │ ├── Scene.jsx │ │ ├── license.txt │ │ ├── scene-transformed.glb │ │ ├── scene.bin │ │ ├── scene.gltf │ │ └── textures │ │ │ └── speed_baseColor.png │ ├── fox │ │ ├── Scene.jsx │ │ ├── license.txt │ │ ├── scene-transformed.glb │ │ ├── scene.bin │ │ └── scene.gltf │ ├── foxs_islands │ │ ├── Scene.jsx │ │ ├── license.txt │ │ ├── scene-transformed.glb │ │ ├── scene.bin │ │ └── scene.gltf │ ├── simple_bird │ │ ├── Scene.jsx │ │ ├── license.txt │ │ ├── scene-transformed.glb │ │ ├── scene.bin │ │ └── scene.gltf │ └── the_cartoon_plane │ │ ├── Scene.jsx │ │ ├── license.txt │ │ ├── scene-transformed.glb │ │ ├── scene.bin │ │ └── scene.gltf ├── components │ ├── App │ │ ├── App.css │ │ └── App.jsx │ ├── Home │ │ ├── HomePage.css │ │ └── HomePage.jsx │ ├── InfoBox │ │ ├── InfoBox.css │ │ └── InfoBox.jsx │ ├── Loader │ │ ├── Loader.css │ │ └── Loader.jsx │ ├── Navbar │ │ ├── Navbar.css │ │ └── Navbar.jsx │ ├── PlayButton │ │ ├── PlayButton.css │ │ └── PlayButton.jsx │ └── ProfileSections │ │ ├── AppsCard │ │ ├── AppsCard.css │ │ └── AppsCard.jsx │ │ ├── CurrentJob │ │ ├── CurrentJob.css │ │ └── CurrentJob.jsx │ │ ├── FaveProjectsCard │ │ ├── FaveProjectsCard.css │ │ └── FaveProjectsCard.jsx │ │ ├── GeneralInfoCard │ │ ├── GeneralInfoCard.css │ │ └── GeneralInfoCard.jsx │ │ ├── IntroCard │ │ ├── IntroCard.css │ │ └── IntroCard.jsx │ │ └── ProjectCard │ │ ├── ProjectCard.css │ │ └── ProjectCard.jsx ├── configs │ ├── cameraFocusPoints.js │ ├── mediaConstants.js │ └── skillIcons.js ├── main.jsx ├── pages │ ├── About │ │ ├── About.css │ │ └── About.jsx │ ├── Contact │ │ ├── Contact.css │ │ └── Contact.jsx │ ├── Projects │ │ ├── Projects.css │ │ └── Projects.jsx │ └── Testimonials │ │ ├── Testimonials.css │ │ └── Testimonials.jsx └── useGUI.jsx ├── tailwind.config.cjs └── vite.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/README.md -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/airplane.png -------------------------------------------------------------------------------- /public/arrow_next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/arrow_next.svg -------------------------------------------------------------------------------- /public/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/car.png -------------------------------------------------------------------------------- /public/car_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/car_card.png -------------------------------------------------------------------------------- /public/card1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/card1.png -------------------------------------------------------------------------------- /public/card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/card2.png -------------------------------------------------------------------------------- /public/card3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/card3.png -------------------------------------------------------------------------------- /public/card4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/card4.png -------------------------------------------------------------------------------- /public/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/circle.svg -------------------------------------------------------------------------------- /public/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/cross.svg -------------------------------------------------------------------------------- /public/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/drag.png -------------------------------------------------------------------------------- /public/ecommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/ecommerce.png -------------------------------------------------------------------------------- /public/ecommerce_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/ecommerce_card.png -------------------------------------------------------------------------------- /public/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/email.svg -------------------------------------------------------------------------------- /public/emilian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/emilian.svg -------------------------------------------------------------------------------- /public/engine_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/engine_loop.wav -------------------------------------------------------------------------------- /public/everloving.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/everloving.mp3 -------------------------------------------------------------------------------- /public/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/gallery.png -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/hambuger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/hambuger.svg -------------------------------------------------------------------------------- /public/hisashi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/hisashi.mp3 -------------------------------------------------------------------------------- /public/icons/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/css.svg -------------------------------------------------------------------------------- /public/icons/ex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/ex.svg -------------------------------------------------------------------------------- /public/icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/git.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/html.svg -------------------------------------------------------------------------------- /public/icons/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/mongodb.svg -------------------------------------------------------------------------------- /public/icons/motion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/motion.svg -------------------------------------------------------------------------------- /public/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/next.svg -------------------------------------------------------------------------------- /public/icons/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/nodejs.svg -------------------------------------------------------------------------------- /public/icons/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/react.svg -------------------------------------------------------------------------------- /public/icons/redux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/redux.svg -------------------------------------------------------------------------------- /public/icons/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/sass.svg -------------------------------------------------------------------------------- /public/icons/tailwind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/tailwind.svg -------------------------------------------------------------------------------- /public/icons/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/icons/ts.svg -------------------------------------------------------------------------------- /public/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/instagram.svg -------------------------------------------------------------------------------- /public/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/linkedin.svg -------------------------------------------------------------------------------- /public/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/phone.svg -------------------------------------------------------------------------------- /public/plane_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/plane_left.png -------------------------------------------------------------------------------- /public/plane_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/plane_right.png -------------------------------------------------------------------------------- /public/play_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/play_off.svg -------------------------------------------------------------------------------- /public/play_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/play_on.svg -------------------------------------------------------------------------------- /public/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/play_store.png -------------------------------------------------------------------------------- /public/profile_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/profile_pic.png -------------------------------------------------------------------------------- /public/saturn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/saturn.jpg -------------------------------------------------------------------------------- /public/testimonial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/testimonial1.png -------------------------------------------------------------------------------- /public/testimonial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/testimonial2.png -------------------------------------------------------------------------------- /public/testimonial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/testimonial3.png -------------------------------------------------------------------------------- /public/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/twitter.svg -------------------------------------------------------------------------------- /public/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/vector.svg -------------------------------------------------------------------------------- /public/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/public/youtube.svg -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/Scene.jsx -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/license.txt -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/scene-transformed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/scene-transformed.glb -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/scene.bin -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/scene.gltf -------------------------------------------------------------------------------- /src/assets/aircarft_biplane/textures/speed_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/aircarft_biplane/textures/speed_baseColor.png -------------------------------------------------------------------------------- /src/assets/fox/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/fox/Scene.jsx -------------------------------------------------------------------------------- /src/assets/fox/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/fox/license.txt -------------------------------------------------------------------------------- /src/assets/fox/scene-transformed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/fox/scene-transformed.glb -------------------------------------------------------------------------------- /src/assets/fox/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/fox/scene.bin -------------------------------------------------------------------------------- /src/assets/fox/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/fox/scene.gltf -------------------------------------------------------------------------------- /src/assets/foxs_islands/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/foxs_islands/Scene.jsx -------------------------------------------------------------------------------- /src/assets/foxs_islands/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/foxs_islands/license.txt -------------------------------------------------------------------------------- /src/assets/foxs_islands/scene-transformed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/foxs_islands/scene-transformed.glb -------------------------------------------------------------------------------- /src/assets/foxs_islands/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/foxs_islands/scene.bin -------------------------------------------------------------------------------- /src/assets/foxs_islands/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/foxs_islands/scene.gltf -------------------------------------------------------------------------------- /src/assets/simple_bird/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/simple_bird/Scene.jsx -------------------------------------------------------------------------------- /src/assets/simple_bird/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/simple_bird/license.txt -------------------------------------------------------------------------------- /src/assets/simple_bird/scene-transformed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/simple_bird/scene-transformed.glb -------------------------------------------------------------------------------- /src/assets/simple_bird/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/simple_bird/scene.bin -------------------------------------------------------------------------------- /src/assets/simple_bird/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/simple_bird/scene.gltf -------------------------------------------------------------------------------- /src/assets/the_cartoon_plane/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/the_cartoon_plane/Scene.jsx -------------------------------------------------------------------------------- /src/assets/the_cartoon_plane/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/the_cartoon_plane/license.txt -------------------------------------------------------------------------------- /src/assets/the_cartoon_plane/scene-transformed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/the_cartoon_plane/scene-transformed.glb -------------------------------------------------------------------------------- /src/assets/the_cartoon_plane/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/the_cartoon_plane/scene.bin -------------------------------------------------------------------------------- /src/assets/the_cartoon_plane/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/assets/the_cartoon_plane/scene.gltf -------------------------------------------------------------------------------- /src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/App/App.css -------------------------------------------------------------------------------- /src/components/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/App/App.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Home/HomePage.css -------------------------------------------------------------------------------- /src/components/Home/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Home/HomePage.jsx -------------------------------------------------------------------------------- /src/components/InfoBox/InfoBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/InfoBox/InfoBox.css -------------------------------------------------------------------------------- /src/components/InfoBox/InfoBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/InfoBox/InfoBox.jsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Loader/Loader.css -------------------------------------------------------------------------------- /src/components/Loader/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Loader/Loader.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/PlayButton/PlayButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/PlayButton/PlayButton.css -------------------------------------------------------------------------------- /src/components/PlayButton/PlayButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/PlayButton/PlayButton.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/AppsCard/AppsCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/AppsCard/AppsCard.css -------------------------------------------------------------------------------- /src/components/ProfileSections/AppsCard/AppsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/AppsCard/AppsCard.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/CurrentJob/CurrentJob.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/CurrentJob/CurrentJob.css -------------------------------------------------------------------------------- /src/components/ProfileSections/CurrentJob/CurrentJob.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/CurrentJob/CurrentJob.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/FaveProjectsCard/FaveProjectsCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/FaveProjectsCard/FaveProjectsCard.css -------------------------------------------------------------------------------- /src/components/ProfileSections/FaveProjectsCard/FaveProjectsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/FaveProjectsCard/FaveProjectsCard.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/GeneralInfoCard/GeneralInfoCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/GeneralInfoCard/GeneralInfoCard.css -------------------------------------------------------------------------------- /src/components/ProfileSections/GeneralInfoCard/GeneralInfoCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/GeneralInfoCard/GeneralInfoCard.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/IntroCard/IntroCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/IntroCard/IntroCard.css -------------------------------------------------------------------------------- /src/components/ProfileSections/IntroCard/IntroCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/IntroCard/IntroCard.jsx -------------------------------------------------------------------------------- /src/components/ProfileSections/ProjectCard/ProjectCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/ProjectCard/ProjectCard.css -------------------------------------------------------------------------------- /src/components/ProfileSections/ProjectCard/ProjectCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/components/ProfileSections/ProjectCard/ProjectCard.jsx -------------------------------------------------------------------------------- /src/configs/cameraFocusPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/configs/cameraFocusPoints.js -------------------------------------------------------------------------------- /src/configs/mediaConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/configs/mediaConstants.js -------------------------------------------------------------------------------- /src/configs/skillIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/configs/skillIcons.js -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/About/About.css -------------------------------------------------------------------------------- /src/pages/About/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/About/About.jsx -------------------------------------------------------------------------------- /src/pages/Contact/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Contact/Contact.css -------------------------------------------------------------------------------- /src/pages/Contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Contact/Contact.jsx -------------------------------------------------------------------------------- /src/pages/Projects/Projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Projects/Projects.css -------------------------------------------------------------------------------- /src/pages/Projects/Projects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Projects/Projects.jsx -------------------------------------------------------------------------------- /src/pages/Testimonials/Testimonials.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Testimonials/Testimonials.css -------------------------------------------------------------------------------- /src/pages/Testimonials/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/pages/Testimonials/Testimonials.jsx -------------------------------------------------------------------------------- /src/useGUI.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/src/useGUI.jsx -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theringsofsaturn/3D-sky-island-portfolio-threejs-react/HEAD/vite.config.js --------------------------------------------------------------------------------