├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.jsx ├── assets │ ├── 3d │ │ ├── bird.glb │ │ ├── fox.glb │ │ ├── island.glb │ │ ├── plane.glb │ │ └── sky.glb │ ├── favicon.ico │ ├── icons │ │ ├── arrow.svg │ │ ├── car.svg │ │ ├── contact.svg │ │ ├── css.svg │ │ ├── estate.svg │ │ ├── express.svg │ │ ├── git.svg │ │ ├── github.svg │ │ ├── html.svg │ │ ├── index.js │ │ ├── javascript.svg │ │ ├── linkedin.svg │ │ ├── mongodb.svg │ │ ├── motion.svg │ │ ├── mui.svg │ │ ├── nextjs.svg │ │ ├── nodejs.svg │ │ ├── pricewise.svg │ │ ├── react.svg │ │ ├── redux.svg │ │ ├── sass.svg │ │ ├── snapgram.svg │ │ ├── soundoff.png │ │ ├── soundon.png │ │ ├── summiz.svg │ │ ├── tailwindcss.svg │ │ ├── threads.svg │ │ ├── twitter.svg │ │ └── typescript.svg │ ├── images │ │ ├── hero.jpg │ │ ├── index.js │ │ ├── logo.svg │ │ ├── meta.png │ │ ├── shopify.png │ │ ├── starbucks.png │ │ └── tesla.png │ ├── react.svg │ └── sakura.mp3 ├── components │ ├── Alert.jsx │ ├── CTA.jsx │ ├── Footer.jsx │ ├── HomeInfo.jsx │ ├── Loader.jsx │ ├── Navbar.jsx │ └── index.js ├── constants │ └── index.js ├── hooks │ └── useAlert.js ├── index.css ├── main.jsx ├── models │ ├── Bird.jsx │ ├── Fox.jsx │ ├── Island.jsx │ ├── Plane.jsx │ ├── Sky.jsx │ └── index.js └── pages │ ├── About.jsx │ ├── Contact.jsx │ ├── Home.jsx │ ├── Projects.jsx │ └── index.js ├── tailwind.config.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/3d/bird.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/3d/bird.glb -------------------------------------------------------------------------------- /src/assets/3d/fox.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/3d/fox.glb -------------------------------------------------------------------------------- /src/assets/3d/island.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/3d/island.glb -------------------------------------------------------------------------------- /src/assets/3d/plane.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/3d/plane.glb -------------------------------------------------------------------------------- /src/assets/3d/sky.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/3d/sky.glb -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/car.svg -------------------------------------------------------------------------------- /src/assets/icons/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/contact.svg -------------------------------------------------------------------------------- /src/assets/icons/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/css.svg -------------------------------------------------------------------------------- /src/assets/icons/estate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/estate.svg -------------------------------------------------------------------------------- /src/assets/icons/express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/express.svg -------------------------------------------------------------------------------- /src/assets/icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/git.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/html.svg -------------------------------------------------------------------------------- /src/assets/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/index.js -------------------------------------------------------------------------------- /src/assets/icons/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/javascript.svg -------------------------------------------------------------------------------- /src/assets/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/linkedin.svg -------------------------------------------------------------------------------- /src/assets/icons/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/mongodb.svg -------------------------------------------------------------------------------- /src/assets/icons/motion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/motion.svg -------------------------------------------------------------------------------- /src/assets/icons/mui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/mui.svg -------------------------------------------------------------------------------- /src/assets/icons/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/nextjs.svg -------------------------------------------------------------------------------- /src/assets/icons/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/nodejs.svg -------------------------------------------------------------------------------- /src/assets/icons/pricewise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/pricewise.svg -------------------------------------------------------------------------------- /src/assets/icons/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/react.svg -------------------------------------------------------------------------------- /src/assets/icons/redux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/redux.svg -------------------------------------------------------------------------------- /src/assets/icons/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/sass.svg -------------------------------------------------------------------------------- /src/assets/icons/snapgram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/snapgram.svg -------------------------------------------------------------------------------- /src/assets/icons/soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/soundoff.png -------------------------------------------------------------------------------- /src/assets/icons/soundon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/soundon.png -------------------------------------------------------------------------------- /src/assets/icons/summiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/summiz.svg -------------------------------------------------------------------------------- /src/assets/icons/tailwindcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/tailwindcss.svg -------------------------------------------------------------------------------- /src/assets/icons/threads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/threads.svg -------------------------------------------------------------------------------- /src/assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/twitter.svg -------------------------------------------------------------------------------- /src/assets/icons/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/icons/typescript.svg -------------------------------------------------------------------------------- /src/assets/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/hero.jpg -------------------------------------------------------------------------------- /src/assets/images/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/index.js -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/meta.png -------------------------------------------------------------------------------- /src/assets/images/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/shopify.png -------------------------------------------------------------------------------- /src/assets/images/starbucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/starbucks.png -------------------------------------------------------------------------------- /src/assets/images/tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/images/tesla.png -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/assets/sakura.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/assets/sakura.mp3 -------------------------------------------------------------------------------- /src/components/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/Alert.jsx -------------------------------------------------------------------------------- /src/components/CTA.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/CTA.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/HomeInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/HomeInfo.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/hooks/useAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/hooks/useAlert.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/models/Bird.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/Bird.jsx -------------------------------------------------------------------------------- /src/models/Fox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/Fox.jsx -------------------------------------------------------------------------------- /src/models/Island.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/Island.jsx -------------------------------------------------------------------------------- /src/models/Plane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/Plane.jsx -------------------------------------------------------------------------------- /src/models/Sky.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/Sky.jsx -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/models/index.js -------------------------------------------------------------------------------- /src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/pages/About.jsx -------------------------------------------------------------------------------- /src/pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/pages/Contact.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Projects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/pages/Projects.jsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltjacTechs/The_Code_Playground/HEAD/vite.config.js --------------------------------------------------------------------------------