├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── assets │ └── images │ │ ├── 2nd-section-bg.png │ │ ├── 711logo.png │ │ ├── BENZINGA-1.png │ │ ├── NASDAQ.png │ │ ├── bloomberg.png │ │ ├── bp-logo.png │ │ ├── busdt.webp │ │ ├── chargep.png │ │ ├── chart.png │ │ ├── check-white.png │ │ ├── chevron-logo.png │ │ ├── cn.png │ │ ├── coinscope-metablaze.png │ │ ├── coinsniper.png │ │ ├── cp.png │ │ ├── dj.png │ │ ├── forbes.png │ │ ├── gas.png │ │ ├── gem-finder.png │ │ ├── hero.jpg │ │ ├── logo-moon-1.png │ │ ├── logo.png │ │ ├── main-logo.png │ │ ├── marathonlogo.png │ │ ├── metamask.svg │ │ ├── mobil-logo.png │ │ ├── mw.png │ │ ├── shell-logo.png │ │ ├── speedwaylogo.png │ │ ├── tesla.png │ │ ├── transak-logo.png │ │ ├── walletconnect.svg │ │ └── yf.png ├── favicon.png └── favicon.svg ├── readme_images └── guide-site.png ├── src ├── App.css ├── App.tsx ├── Routes.tsx ├── assets │ └── react.svg ├── components │ ├── AlertMessage.tsx │ ├── CustomInput.tsx │ ├── Loading.tsx │ ├── SectionTitleSash1.tsx │ └── SectionTitleSash2.tsx ├── contexts │ ├── AlertMessageContext.tsx │ ├── LoadingContext.tsx │ └── MobileMenuContext.tsx ├── hooks │ ├── useAlertMessage.tsx │ ├── useLoading.ts │ └── useMobileMenu.ts ├── index.css ├── layouts │ └── LandingLayout │ │ ├── Footer.tsx │ │ ├── Navbar.tsx │ │ └── index.tsx ├── main.tsx ├── pages │ └── HomePage │ │ ├── FaqSection.tsx │ │ ├── HeroSection │ │ ├── Bars.tsx │ │ ├── Hero.tsx │ │ └── index.tsx │ │ ├── IntroSection │ │ ├── AppComingSoon.tsx │ │ ├── Concept.tsx │ │ ├── PrivateSaleComingSoon.tsx │ │ ├── Videos.tsx │ │ └── index.tsx │ │ ├── NewsSection.tsx │ │ ├── PartnerSection │ │ ├── ListedSites.tsx │ │ ├── Stations.tsx │ │ └── index.tsx │ │ ├── RoadmapSection │ │ ├── DP.tsx │ │ ├── MB.tsx │ │ └── index.tsx │ │ ├── TokenSaleSection │ │ ├── DialogConnectWallet.tsx │ │ ├── DialogTokenClaim.jsx │ │ ├── DialogWithBnb.jsx │ │ ├── DialogWithBusdt.jsx │ │ ├── HowToBuy.tsx │ │ ├── TokenSale.tsx │ │ └── index.jsx │ │ ├── TokenomicsSection │ │ ├── Diagram.tsx │ │ ├── Supply.tsx │ │ └── index.tsx │ │ └── index.tsx ├── utils │ ├── api.ts │ ├── apiOfCoinLore.ts │ ├── constants.ts │ ├── interfaces.ts │ └── types.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/assets/images/2nd-section-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/2nd-section-bg.png -------------------------------------------------------------------------------- /public/assets/images/711logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/711logo.png -------------------------------------------------------------------------------- /public/assets/images/BENZINGA-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/BENZINGA-1.png -------------------------------------------------------------------------------- /public/assets/images/NASDAQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/NASDAQ.png -------------------------------------------------------------------------------- /public/assets/images/bloomberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/bloomberg.png -------------------------------------------------------------------------------- /public/assets/images/bp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/bp-logo.png -------------------------------------------------------------------------------- /public/assets/images/busdt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/busdt.webp -------------------------------------------------------------------------------- /public/assets/images/chargep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/chargep.png -------------------------------------------------------------------------------- /public/assets/images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/chart.png -------------------------------------------------------------------------------- /public/assets/images/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/check-white.png -------------------------------------------------------------------------------- /public/assets/images/chevron-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/chevron-logo.png -------------------------------------------------------------------------------- /public/assets/images/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/cn.png -------------------------------------------------------------------------------- /public/assets/images/coinscope-metablaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/coinscope-metablaze.png -------------------------------------------------------------------------------- /public/assets/images/coinsniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/coinsniper.png -------------------------------------------------------------------------------- /public/assets/images/cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/cp.png -------------------------------------------------------------------------------- /public/assets/images/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/dj.png -------------------------------------------------------------------------------- /public/assets/images/forbes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/forbes.png -------------------------------------------------------------------------------- /public/assets/images/gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/gas.png -------------------------------------------------------------------------------- /public/assets/images/gem-finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/gem-finder.png -------------------------------------------------------------------------------- /public/assets/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/hero.jpg -------------------------------------------------------------------------------- /public/assets/images/logo-moon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/logo-moon-1.png -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /public/assets/images/main-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/main-logo.png -------------------------------------------------------------------------------- /public/assets/images/marathonlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/marathonlogo.png -------------------------------------------------------------------------------- /public/assets/images/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/metamask.svg -------------------------------------------------------------------------------- /public/assets/images/mobil-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/mobil-logo.png -------------------------------------------------------------------------------- /public/assets/images/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/mw.png -------------------------------------------------------------------------------- /public/assets/images/shell-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/shell-logo.png -------------------------------------------------------------------------------- /public/assets/images/speedwaylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/speedwaylogo.png -------------------------------------------------------------------------------- /public/assets/images/tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/tesla.png -------------------------------------------------------------------------------- /public/assets/images/transak-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/transak-logo.png -------------------------------------------------------------------------------- /public/assets/images/walletconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/walletconnect.svg -------------------------------------------------------------------------------- /public/assets/images/yf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/assets/images/yf.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /readme_images/guide-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/readme_images/guide-site.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/Routes.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/AlertMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/components/AlertMessage.tsx -------------------------------------------------------------------------------- /src/components/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/components/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/SectionTitleSash1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/components/SectionTitleSash1.tsx -------------------------------------------------------------------------------- /src/components/SectionTitleSash2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/components/SectionTitleSash2.tsx -------------------------------------------------------------------------------- /src/contexts/AlertMessageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/contexts/AlertMessageContext.tsx -------------------------------------------------------------------------------- /src/contexts/LoadingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/contexts/LoadingContext.tsx -------------------------------------------------------------------------------- /src/contexts/MobileMenuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/contexts/MobileMenuContext.tsx -------------------------------------------------------------------------------- /src/hooks/useAlertMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/hooks/useAlertMessage.tsx -------------------------------------------------------------------------------- /src/hooks/useLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/hooks/useLoading.ts -------------------------------------------------------------------------------- /src/hooks/useMobileMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/hooks/useMobileMenu.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/layouts/LandingLayout/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/layouts/LandingLayout/Navbar.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/layouts/LandingLayout/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/FaqSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/FaqSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/Bars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/HeroSection/Bars.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/HeroSection/Hero.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/HeroSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/IntroSection/AppComingSoon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/IntroSection/AppComingSoon.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/IntroSection/Concept.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/IntroSection/Concept.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/IntroSection/PrivateSaleComingSoon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/IntroSection/PrivateSaleComingSoon.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/IntroSection/Videos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/IntroSection/Videos.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/IntroSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/IntroSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/NewsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/NewsSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/PartnerSection/ListedSites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/PartnerSection/ListedSites.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/PartnerSection/Stations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/PartnerSection/Stations.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/PartnerSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/PartnerSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/RoadmapSection/DP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/RoadmapSection/DP.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/RoadmapSection/MB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/RoadmapSection/MB.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/RoadmapSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/RoadmapSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/DialogConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/DialogConnectWallet.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/DialogTokenClaim.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/DialogTokenClaim.jsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/DialogWithBnb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/DialogWithBnb.jsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/DialogWithBusdt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/DialogWithBusdt.jsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/HowToBuy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/HowToBuy.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/TokenSale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/TokenSale.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenSaleSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenSaleSection/index.jsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenomicsSection/Diagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenomicsSection/Diagram.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenomicsSection/Supply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenomicsSection/Supply.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TokenomicsSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/TokenomicsSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/pages/HomePage/index.tsx -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/apiOfCoinLore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/utils/apiOfCoinLore.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/utils/interfaces.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeathKnight813/gaswizard-frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------