├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.tsx ├── ArrowRight.tsx ├── BoatVideo.tsx ├── Compass.tsx ├── HeroText.tsx ├── Home.tsx ├── Logo.tsx ├── MapImages.tsx ├── Navbar.tsx ├── assets │ ├── boat-video.mp4 │ ├── map_1.png │ ├── map_2.png │ └── react.svg ├── index.css ├── main.tsx ├── utils │ └── animation.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── windi.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/ArrowRight.tsx -------------------------------------------------------------------------------- /src/BoatVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/BoatVideo.tsx -------------------------------------------------------------------------------- /src/Compass.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/Compass.tsx -------------------------------------------------------------------------------- /src/HeroText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/HeroText.tsx -------------------------------------------------------------------------------- /src/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/Home.tsx -------------------------------------------------------------------------------- /src/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/Logo.tsx -------------------------------------------------------------------------------- /src/MapImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/MapImages.tsx -------------------------------------------------------------------------------- /src/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/Navbar.tsx -------------------------------------------------------------------------------- /src/assets/boat-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/assets/boat-video.mp4 -------------------------------------------------------------------------------- /src/assets/map_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/assets/map_1.png -------------------------------------------------------------------------------- /src/assets/map_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/assets/map_2.png -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/utils/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/src/utils/animation.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/vite.config.ts -------------------------------------------------------------------------------- /windi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackwiz/boat-website/HEAD/windi.config.ts --------------------------------------------------------------------------------