├── .env.example ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── components.json ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .gitignore ├── main.py └── requirements.txt ├── package.json ├── postcss.config.js ├── public ├── 404.html └── index.html ├── src ├── app.css ├── app.d.ts ├── app.html ├── hooks.client.ts ├── hooks.server.ts ├── lib │ ├── components │ │ └── ui │ │ │ ├── BackgroundBeams │ │ │ ├── BackgroundBeams.svelte │ │ │ └── index.ts │ │ │ ├── GlowingStars │ │ │ ├── Glow.svelte │ │ │ ├── GlowingStarsBackgroundCard.svelte │ │ │ ├── GlowingStarsDescription.svelte │ │ │ ├── GlowingStarsTitle.svelte │ │ │ ├── Illustration.svelte │ │ │ ├── Star.svelte │ │ │ └── index.ts │ │ │ ├── LampEffect │ │ │ ├── LampEffect.svelte │ │ │ └── index.ts │ │ │ ├── MovingBorder │ │ │ ├── Button.svelte │ │ │ ├── MovingBorder.svelte │ │ │ └── index.ts │ │ │ ├── SignupForm │ │ │ ├── Input.svelte │ │ │ ├── Label.svelte │ │ │ └── index.ts │ │ │ ├── Spotlight │ │ │ ├── Spotlight.svelte │ │ │ └── index.ts │ │ │ ├── button │ │ │ ├── button.svelte │ │ │ └── index.ts │ │ │ ├── input │ │ │ ├── index.ts │ │ │ └── input.svelte │ │ │ └── label │ │ │ ├── index.ts │ │ │ └── label.svelte │ ├── firebase.ts │ ├── index.ts │ ├── server │ │ └── admin.ts │ ├── toast_utils.ts │ ├── utils.ts │ └── utils │ │ └── cn.ts └── routes │ ├── +layout.server.ts │ ├── +layout.svelte │ ├── +page.svelte │ ├── api │ ├── auth │ │ └── +server.ts │ ├── create │ │ └── +server.ts │ ├── submit │ │ └── +server.ts │ └── team │ │ ├── create │ │ └── +server.ts │ │ ├── join │ │ └── +server.ts │ │ └── leave │ │ └── +server.ts │ ├── leaderboard │ ├── +page.server.ts │ └── +page.svelte │ ├── play │ ├── +page.server.ts │ └── +page.svelte │ ├── ready │ ├── +page.server.ts │ └── +page.svelte │ └── team │ ├── +page.server.ts │ └── +page.svelte ├── static └── Margazhi Logo.png ├── storage.rules ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/components.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/functions/main.py -------------------------------------------------------------------------------- /functions/requirements.txt: -------------------------------------------------------------------------------- 1 | firebase_functions~=0.1.0 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/public/404.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/public/index.html -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/app.html -------------------------------------------------------------------------------- /src/hooks.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/hooks.client.ts -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/lib/components/ui/BackgroundBeams/BackgroundBeams.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/BackgroundBeams/BackgroundBeams.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/BackgroundBeams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/BackgroundBeams/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/Glow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/Glow.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/GlowingStarsBackgroundCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/GlowingStarsBackgroundCard.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/GlowingStarsDescription.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/GlowingStarsDescription.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/GlowingStarsTitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/GlowingStarsTitle.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/Illustration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/Illustration.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/Star.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/Star.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/GlowingStars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/GlowingStars/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/LampEffect/LampEffect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/LampEffect/LampEffect.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/LampEffect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/LampEffect/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/MovingBorder/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/MovingBorder/Button.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/MovingBorder/MovingBorder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/MovingBorder/MovingBorder.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/MovingBorder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/MovingBorder/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/SignupForm/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/SignupForm/Input.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/SignupForm/Label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/SignupForm/Label.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/SignupForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/SignupForm/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/Spotlight/Spotlight.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/Spotlight/Spotlight.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/Spotlight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/Spotlight/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/button/button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/button/button.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/button/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/input/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/input/input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/input/input.svelte -------------------------------------------------------------------------------- /src/lib/components/ui/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/label/index.ts -------------------------------------------------------------------------------- /src/lib/components/ui/label/label.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/components/ui/label/label.svelte -------------------------------------------------------------------------------- /src/lib/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/firebase.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/server/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/server/admin.ts -------------------------------------------------------------------------------- /src/lib/toast_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/toast_utils.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/lib/utils/cn.ts -------------------------------------------------------------------------------- /src/routes/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/+layout.server.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/api/auth/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/auth/+server.ts -------------------------------------------------------------------------------- /src/routes/api/create/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/create/+server.ts -------------------------------------------------------------------------------- /src/routes/api/submit/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/submit/+server.ts -------------------------------------------------------------------------------- /src/routes/api/team/create/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/team/create/+server.ts -------------------------------------------------------------------------------- /src/routes/api/team/join/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/team/join/+server.ts -------------------------------------------------------------------------------- /src/routes/api/team/leave/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/api/team/leave/+server.ts -------------------------------------------------------------------------------- /src/routes/leaderboard/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/leaderboard/+page.server.ts -------------------------------------------------------------------------------- /src/routes/leaderboard/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/leaderboard/+page.svelte -------------------------------------------------------------------------------- /src/routes/play/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/play/+page.server.ts -------------------------------------------------------------------------------- /src/routes/play/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/play/+page.svelte -------------------------------------------------------------------------------- /src/routes/ready/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/ready/+page.server.ts -------------------------------------------------------------------------------- /src/routes/ready/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/ready/+page.svelte -------------------------------------------------------------------------------- /src/routes/team/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/team/+page.server.ts -------------------------------------------------------------------------------- /src/routes/team/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/src/routes/team/+page.svelte -------------------------------------------------------------------------------- /static/Margazhi Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/static/Margazhi Logo.png -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/storage.rules -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soham-Wani/CryptIQ/HEAD/vite.config.ts --------------------------------------------------------------------------------