├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── circle-scribble.svg ├── curved-arrow.png ├── jupiter.png ├── main-font.ttf ├── root-og-image.png ├── sol.svg ├── tensor.png ├── usdc.svg └── usdt.svg ├── src ├── .env.example ├── app │ ├── api │ │ └── root-og-image │ │ │ └── route.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── swap │ │ └── page.tsx ├── components │ ├── Hero.tsx │ ├── NFTMinter.tsx │ ├── NFTSelector.test.tsx │ ├── NFTSelector.tsx │ ├── Notification.tsx │ ├── SwapButton.tsx │ ├── TokenSelector.tsx │ ├── WalletContextProvider.tsx │ ├── WalletContextProviderInner.tsx │ ├── feature-card.tsx │ ├── features.tsx │ ├── footer.tsx │ ├── magicui │ │ ├── animated-beam.tsx │ │ └── avatar-circles.tsx │ ├── navbar.tsx │ ├── theme-provider.tsx │ ├── theme-toggler.tsx │ ├── ui │ │ ├── alert.tsx │ │ ├── animated-beam.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── radio-group.tsx │ │ ├── select.tsx │ │ ├── sonner.tsx │ │ ├── tabs.tsx │ │ └── textarea.tsx │ └── users-avatar.tsx └── lib │ ├── analytics.ts │ ├── jupiterApi.ts │ ├── tensorApi.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/circle-scribble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/circle-scribble.svg -------------------------------------------------------------------------------- /public/curved-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/curved-arrow.png -------------------------------------------------------------------------------- /public/jupiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/jupiter.png -------------------------------------------------------------------------------- /public/main-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/main-font.ttf -------------------------------------------------------------------------------- /public/root-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/root-og-image.png -------------------------------------------------------------------------------- /public/sol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/sol.svg -------------------------------------------------------------------------------- /public/tensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/tensor.png -------------------------------------------------------------------------------- /public/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/usdc.svg -------------------------------------------------------------------------------- /public/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/public/usdt.svg -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_URL = 'http://localhost:3000' -------------------------------------------------------------------------------- /src/app/api/root-og-image/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/api/root-og-image/route.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/swap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/app/swap/page.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/NFTMinter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/NFTMinter.tsx -------------------------------------------------------------------------------- /src/components/NFTSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/NFTSelector.test.tsx -------------------------------------------------------------------------------- /src/components/NFTSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/NFTSelector.tsx -------------------------------------------------------------------------------- /src/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/Notification.tsx -------------------------------------------------------------------------------- /src/components/SwapButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/SwapButton.tsx -------------------------------------------------------------------------------- /src/components/TokenSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/TokenSelector.tsx -------------------------------------------------------------------------------- /src/components/WalletContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/WalletContextProvider.tsx -------------------------------------------------------------------------------- /src/components/WalletContextProviderInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/WalletContextProviderInner.tsx -------------------------------------------------------------------------------- /src/components/feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/feature-card.tsx -------------------------------------------------------------------------------- /src/components/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/features.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/magicui/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/magicui/animated-beam.tsx -------------------------------------------------------------------------------- /src/components/magicui/avatar-circles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/magicui/avatar-circles.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/theme-toggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/theme-toggler.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/animated-beam.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/users-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/components/users-avatar.tsx -------------------------------------------------------------------------------- /src/lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/lib/analytics.ts -------------------------------------------------------------------------------- /src/lib/jupiterApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/lib/jupiterApi.ts -------------------------------------------------------------------------------- /src/lib/tensorApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/lib/tensorApi.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanmayArchives/ChronoMint/HEAD/tsconfig.json --------------------------------------------------------------------------------