├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public ├── assets │ ├── images │ │ ├── coingecko-logo.webp │ │ ├── coinmarketcap-logo.webp │ │ ├── developer-scotty.png │ │ ├── etherium-logo.webp │ │ ├── hero-logo.png │ │ ├── logo.svg │ │ ├── mobile-menu-icon.png │ │ ├── rockets.png │ │ ├── scotty-adventure.png │ │ ├── scotty-dog.webp │ │ ├── scottychat.png │ │ ├── swap.png │ │ ├── tokenomics.png │ │ ├── what-is-scotty.png │ │ └── white-uniswap.webp │ └── videos │ │ └── scotty_bg.mp4 └── logo.svg ├── src ├── App.css ├── App.tsx ├── Routes.tsx ├── assets │ └── react.svg ├── components │ ├── InitLoadProgressBar.tsx │ ├── InitLoading.tsx │ ├── Loading.tsx │ ├── ProgressBar.tsx │ ├── SectionTitle.tsx │ └── styledComponents.ts ├── contexts │ ├── InitLoadingContext.tsx │ └── LoadingContext.tsx ├── hooks │ ├── useInitLoading.ts │ └── useLoading.ts ├── index.css ├── layouts │ └── LandingLayout │ │ ├── DPNavbar.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── MBNavbar.tsx │ │ ├── Topbar.tsx │ │ └── index.tsx ├── main.tsx ├── pages │ └── Home │ │ ├── AboutSection.tsx │ │ ├── AdventureSection.tsx │ │ ├── CommunitySection.tsx │ │ ├── CompanionsSection.tsx │ │ ├── HowToBuySection.tsx │ │ ├── PlanSection.tsx │ │ ├── SupplySection.tsx │ │ ├── TokenSaleSection │ │ ├── TokenSalePanel │ │ │ ├── ClaimScotty.tsx │ │ │ ├── TabEthereum.tsx │ │ │ ├── TabUsdt.tsx │ │ │ ├── TimePiece.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ │ └── index.tsx ├── utils │ ├── api.ts │ ├── apiOfCoinLore.ts │ ├── constants.ts │ └── interfaces.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/images/coingecko-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/coingecko-logo.webp -------------------------------------------------------------------------------- /public/assets/images/coinmarketcap-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/coinmarketcap-logo.webp -------------------------------------------------------------------------------- /public/assets/images/developer-scotty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/developer-scotty.png -------------------------------------------------------------------------------- /public/assets/images/etherium-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/etherium-logo.webp -------------------------------------------------------------------------------- /public/assets/images/hero-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/hero-logo.png -------------------------------------------------------------------------------- /public/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/logo.svg -------------------------------------------------------------------------------- /public/assets/images/mobile-menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/mobile-menu-icon.png -------------------------------------------------------------------------------- /public/assets/images/rockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/rockets.png -------------------------------------------------------------------------------- /public/assets/images/scotty-adventure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/scotty-adventure.png -------------------------------------------------------------------------------- /public/assets/images/scotty-dog.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/scotty-dog.webp -------------------------------------------------------------------------------- /public/assets/images/scottychat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/scottychat.png -------------------------------------------------------------------------------- /public/assets/images/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/swap.png -------------------------------------------------------------------------------- /public/assets/images/tokenomics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/tokenomics.png -------------------------------------------------------------------------------- /public/assets/images/what-is-scotty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/what-is-scotty.png -------------------------------------------------------------------------------- /public/assets/images/white-uniswap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/images/white-uniswap.webp -------------------------------------------------------------------------------- /public/assets/videos/scotty_bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/assets/videos/scotty_bg.mp4 -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/public/logo.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/Routes.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/InitLoadProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/InitLoadProgressBar.tsx -------------------------------------------------------------------------------- /src/components/InitLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/InitLoading.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/SectionTitle.tsx -------------------------------------------------------------------------------- /src/components/styledComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/components/styledComponents.ts -------------------------------------------------------------------------------- /src/contexts/InitLoadingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/contexts/InitLoadingContext.tsx -------------------------------------------------------------------------------- /src/contexts/LoadingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/contexts/LoadingContext.tsx -------------------------------------------------------------------------------- /src/hooks/useInitLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/hooks/useInitLoading.ts -------------------------------------------------------------------------------- /src/hooks/useLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/hooks/useLoading.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/LandingLayout/DPNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/DPNavbar.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/Header.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/MBNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/MBNavbar.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Topbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/Topbar.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/layouts/LandingLayout/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Home/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/AboutSection.tsx -------------------------------------------------------------------------------- /src/pages/Home/AdventureSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/AdventureSection.tsx -------------------------------------------------------------------------------- /src/pages/Home/CommunitySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/CommunitySection.tsx -------------------------------------------------------------------------------- /src/pages/Home/CompanionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/CompanionsSection.tsx -------------------------------------------------------------------------------- /src/pages/Home/HowToBuySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/HowToBuySection.tsx -------------------------------------------------------------------------------- /src/pages/Home/PlanSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/PlanSection.tsx -------------------------------------------------------------------------------- /src/pages/Home/SupplySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/SupplySection.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/TokenSalePanel/ClaimScotty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/TokenSalePanel/ClaimScotty.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/TokenSalePanel/TabEthereum.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/TokenSalePanel/TabEthereum.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/TokenSalePanel/TabUsdt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/TokenSalePanel/TabUsdt.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/TokenSalePanel/TimePiece.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/TokenSalePanel/TimePiece.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/TokenSalePanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/TokenSalePanel/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/TokenSaleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/TokenSaleSection/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/apiOfCoinLore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/utils/apiOfCoinLore.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/src/utils/interfaces.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybersage14/ScottytheaiIdoFrontend-React/HEAD/vite.config.ts --------------------------------------------------------------------------------