├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── (auth) │ ├── forgot-password │ │ └── page.tsx │ ├── layout.tsx │ ├── reset-password │ │ └── page.tsx │ ├── sign-in │ │ └── page.tsx │ ├── sign-up │ │ └── page.tsx │ └── verify-email │ │ ├── sent │ │ └── page.tsx │ │ └── success │ │ └── page.tsx ├── actions │ ├── admin.ts │ ├── discord.ts │ ├── home.ts │ ├── launch.ts │ ├── plausible.ts │ ├── project-details.ts │ ├── projects.ts │ └── winners.ts ├── admin │ ├── layout.tsx │ └── page.tsx ├── api │ ├── auth │ │ ├── [...all] │ │ │ └── route.ts │ │ └── stripe │ │ │ └── webhook │ │ │ └── route.ts │ ├── comments │ │ └── [[...comment]] │ │ │ └── route.ts │ ├── cron │ │ ├── send-ongoing-reminders │ │ │ └── route.ts │ │ ├── send-winner-notifications │ │ │ └── route.ts │ │ └── update-launches │ │ │ └── route.ts │ ├── payment │ │ └── verify │ │ │ └── route.ts │ ├── projects │ │ ├── [projectId] │ │ │ └── status │ │ │ │ └── route.ts │ │ └── check-url │ │ │ └── route.ts │ ├── search │ │ └── route.ts │ └── uploadthing │ │ ├── core.ts │ │ └── route.ts ├── blog │ ├── [slug] │ │ └── page.tsx │ └── page.tsx ├── categories │ └── page.tsx ├── dashboard │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── legal │ ├── badges │ │ └── page.tsx │ ├── page.tsx │ ├── privacy │ │ └── page.tsx │ └── terms │ │ └── page.tsx ├── not-found.tsx ├── page.tsx ├── payment │ ├── failed │ │ └── page.tsx │ └── success │ │ └── page.tsx ├── pricing │ └── page.tsx ├── projects │ ├── [slug] │ │ ├── badges │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ ├── not-found.tsx │ │ └── page.tsx │ └── submit │ │ └── page.tsx ├── reviews │ ├── [slug] │ │ └── page.tsx │ └── page.tsx ├── settings │ └── page.tsx ├── sponsors │ └── page.tsx ├── trending │ └── page.tsx └── winners │ └── page.tsx ├── bun.lockb ├── components.json ├── components ├── auth │ ├── forgot-password-form.tsx │ ├── reset-password-form.tsx │ ├── sign-in-form.tsx │ ├── sign-up-form.tsx │ └── turnstile-captcha.tsx ├── badges │ ├── BadgesDisplay.tsx │ ├── copy-button.tsx │ └── show-code.tsx ├── blog │ ├── article-footer.tsx │ ├── mdx-layout.tsx │ ├── reading-time.ts │ ├── smooth-scroll.tsx │ └── table-of-contents.tsx ├── categories │ └── mobile-category-selector.tsx ├── dashboard │ └── dashboard-project-card.tsx ├── date-picker.tsx ├── faq-section.tsx ├── home │ ├── premium-card.tsx │ ├── project-card-buttons.tsx │ ├── project-card.tsx │ ├── project-section.tsx │ ├── sponsor-card.tsx │ ├── top-launches-podium.tsx │ └── welcome-banner.tsx ├── icons │ ├── bronze.svg │ ├── gold.svg │ ├── medal-icons.tsx │ └── vide.svg ├── landing-page │ └── hero.tsx ├── layout │ ├── footer.tsx │ ├── nav-menu.tsx │ ├── nav.tsx │ ├── search-command.tsx │ └── user-nav.tsx ├── project │ ├── daily-ranking-badge.tsx │ ├── edit-button.tsx │ ├── edit-project-form.tsx │ ├── project-comments.tsx │ ├── project-image-with-loader.tsx │ ├── ranking-badge.tsx │ ├── share-button-origin.tsx │ ├── share-button.tsx │ ├── submit-form.tsx │ └── upvote-button.tsx ├── shared │ └── sponsor-cards.tsx ├── theme │ ├── theme-provider.tsx │ ├── theme-toggle-menu.tsx │ └── theme-toggle.tsx ├── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── glow-effect.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── rich-text-editor.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── stepper.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ └── tooltip.tsx └── winners │ └── winner-card.tsx ├── content └── blog │ └── index.ts ├── docs └── cron-launches.md ├── drizzle.config.ts ├── drizzle ├── db │ ├── index.ts │ └── schema.ts └── migrations │ ├── 0000_pink_serpent_society.sql │ ├── 0001_dizzy_kabuki.sql │ ├── 0002_pale_metal_master.sql │ ├── 0003_strange_meggan.sql │ ├── 0004_absent_grandmaster.sql │ ├── 0005_early_ikaris.sql │ └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ ├── 0002_snapshot.json │ ├── 0003_snapshot.json │ ├── 0004_snapshot.json │ ├── 0005_snapshot.json │ └── _journal.json ├── eslint.config.mjs ├── hooks └── use-mobile.ts ├── lib ├── auth-client.ts ├── auth.ts ├── comment-rate-limit.ts ├── comment.config.ts ├── constants.ts ├── content-utils.ts ├── discord-notification.ts ├── email.ts ├── hooks │ ├── use-debounce.ts │ └── use-search.ts ├── link-utils.ts ├── rate-limit.ts ├── transactional-emails.ts ├── uploadthing.ts ├── utils.ts └── validations │ └── auth.ts ├── mdx-components.tsx ├── middleware.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── images │ └── badges │ │ ├── powered-by-dark.svg │ │ ├── powered-by-light.svg │ │ ├── top1-dark.svg │ │ ├── top1-light.svg │ │ ├── top2-dark.svg │ │ ├── top2-light.svg │ │ ├── top3-dark.svg │ │ └── top3-light.svg ├── logo.png ├── logo.svg ├── og-blog.png ├── og.png ├── oppieD.png ├── oppieG.png └── sponsors │ └── landinglab.png ├── scripts └── categories.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/forgot-password/page.tsx -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /app/(auth)/verify-email/sent/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/verify-email/sent/page.tsx -------------------------------------------------------------------------------- /app/(auth)/verify-email/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/(auth)/verify-email/success/page.tsx -------------------------------------------------------------------------------- /app/actions/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/admin.ts -------------------------------------------------------------------------------- /app/actions/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/discord.ts -------------------------------------------------------------------------------- /app/actions/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/home.ts -------------------------------------------------------------------------------- /app/actions/launch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/launch.ts -------------------------------------------------------------------------------- /app/actions/plausible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/plausible.ts -------------------------------------------------------------------------------- /app/actions/project-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/project-details.ts -------------------------------------------------------------------------------- /app/actions/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/projects.ts -------------------------------------------------------------------------------- /app/actions/winners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/actions/winners.ts -------------------------------------------------------------------------------- /app/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/admin/layout.tsx -------------------------------------------------------------------------------- /app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/admin/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...all]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/auth/[...all]/route.ts -------------------------------------------------------------------------------- /app/api/auth/stripe/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/auth/stripe/webhook/route.ts -------------------------------------------------------------------------------- /app/api/comments/[[...comment]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/comments/[[...comment]]/route.ts -------------------------------------------------------------------------------- /app/api/cron/send-ongoing-reminders/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/cron/send-ongoing-reminders/route.ts -------------------------------------------------------------------------------- /app/api/cron/send-winner-notifications/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/cron/send-winner-notifications/route.ts -------------------------------------------------------------------------------- /app/api/cron/update-launches/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/cron/update-launches/route.ts -------------------------------------------------------------------------------- /app/api/payment/verify/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/payment/verify/route.ts -------------------------------------------------------------------------------- /app/api/projects/[projectId]/status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/projects/[projectId]/status/route.ts -------------------------------------------------------------------------------- /app/api/projects/check-url/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/projects/check-url/route.ts -------------------------------------------------------------------------------- /app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/search/route.ts -------------------------------------------------------------------------------- /app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/categories/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/legal/badges/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/legal/badges/page.tsx -------------------------------------------------------------------------------- /app/legal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/legal/page.tsx -------------------------------------------------------------------------------- /app/legal/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/legal/privacy/page.tsx -------------------------------------------------------------------------------- /app/legal/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/legal/terms/page.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/payment/failed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/payment/failed/page.tsx -------------------------------------------------------------------------------- /app/payment/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/payment/success/page.tsx -------------------------------------------------------------------------------- /app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/pricing/page.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/badges/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/[slug]/badges/loading.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/badges/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/[slug]/badges/page.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/[slug]/loading.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/[slug]/not-found.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/[slug]/page.tsx -------------------------------------------------------------------------------- /app/projects/submit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/projects/submit/page.tsx -------------------------------------------------------------------------------- /app/reviews/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/reviews/[slug]/page.tsx -------------------------------------------------------------------------------- /app/reviews/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/reviews/page.tsx -------------------------------------------------------------------------------- /app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/settings/page.tsx -------------------------------------------------------------------------------- /app/sponsors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/sponsors/page.tsx -------------------------------------------------------------------------------- /app/trending/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/trending/page.tsx -------------------------------------------------------------------------------- /app/winners/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/app/winners/page.tsx -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components.json -------------------------------------------------------------------------------- /components/auth/forgot-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/auth/forgot-password-form.tsx -------------------------------------------------------------------------------- /components/auth/reset-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/auth/reset-password-form.tsx -------------------------------------------------------------------------------- /components/auth/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/auth/sign-in-form.tsx -------------------------------------------------------------------------------- /components/auth/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/auth/sign-up-form.tsx -------------------------------------------------------------------------------- /components/auth/turnstile-captcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/auth/turnstile-captcha.tsx -------------------------------------------------------------------------------- /components/badges/BadgesDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/badges/BadgesDisplay.tsx -------------------------------------------------------------------------------- /components/badges/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/badges/copy-button.tsx -------------------------------------------------------------------------------- /components/badges/show-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/badges/show-code.tsx -------------------------------------------------------------------------------- /components/blog/article-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/blog/article-footer.tsx -------------------------------------------------------------------------------- /components/blog/mdx-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/blog/mdx-layout.tsx -------------------------------------------------------------------------------- /components/blog/reading-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/blog/reading-time.ts -------------------------------------------------------------------------------- /components/blog/smooth-scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/blog/smooth-scroll.tsx -------------------------------------------------------------------------------- /components/blog/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/blog/table-of-contents.tsx -------------------------------------------------------------------------------- /components/categories/mobile-category-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/categories/mobile-category-selector.tsx -------------------------------------------------------------------------------- /components/dashboard/dashboard-project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/dashboard/dashboard-project-card.tsx -------------------------------------------------------------------------------- /components/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/date-picker.tsx -------------------------------------------------------------------------------- /components/faq-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/faq-section.tsx -------------------------------------------------------------------------------- /components/home/premium-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/premium-card.tsx -------------------------------------------------------------------------------- /components/home/project-card-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/project-card-buttons.tsx -------------------------------------------------------------------------------- /components/home/project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/project-card.tsx -------------------------------------------------------------------------------- /components/home/project-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/project-section.tsx -------------------------------------------------------------------------------- /components/home/sponsor-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/sponsor-card.tsx -------------------------------------------------------------------------------- /components/home/top-launches-podium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/top-launches-podium.tsx -------------------------------------------------------------------------------- /components/home/welcome-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/home/welcome-banner.tsx -------------------------------------------------------------------------------- /components/icons/bronze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/icons/bronze.svg -------------------------------------------------------------------------------- /components/icons/gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/icons/gold.svg -------------------------------------------------------------------------------- /components/icons/medal-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/icons/medal-icons.tsx -------------------------------------------------------------------------------- /components/icons/vide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/icons/vide.svg -------------------------------------------------------------------------------- /components/landing-page/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/landing-page/hero.tsx -------------------------------------------------------------------------------- /components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/layout/footer.tsx -------------------------------------------------------------------------------- /components/layout/nav-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/layout/nav-menu.tsx -------------------------------------------------------------------------------- /components/layout/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/layout/nav.tsx -------------------------------------------------------------------------------- /components/layout/search-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/layout/search-command.tsx -------------------------------------------------------------------------------- /components/layout/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/layout/user-nav.tsx -------------------------------------------------------------------------------- /components/project/daily-ranking-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/daily-ranking-badge.tsx -------------------------------------------------------------------------------- /components/project/edit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/edit-button.tsx -------------------------------------------------------------------------------- /components/project/edit-project-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/edit-project-form.tsx -------------------------------------------------------------------------------- /components/project/project-comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/project-comments.tsx -------------------------------------------------------------------------------- /components/project/project-image-with-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/project-image-with-loader.tsx -------------------------------------------------------------------------------- /components/project/ranking-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/ranking-badge.tsx -------------------------------------------------------------------------------- /components/project/share-button-origin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/share-button-origin.tsx -------------------------------------------------------------------------------- /components/project/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/share-button.tsx -------------------------------------------------------------------------------- /components/project/submit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/submit-form.tsx -------------------------------------------------------------------------------- /components/project/upvote-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/project/upvote-button.tsx -------------------------------------------------------------------------------- /components/shared/sponsor-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/shared/sponsor-cards.tsx -------------------------------------------------------------------------------- /components/theme/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/theme/theme-provider.tsx -------------------------------------------------------------------------------- /components/theme/theme-toggle-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/theme/theme-toggle-menu.tsx -------------------------------------------------------------------------------- /components/theme/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/theme/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/glow-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/glow-effect.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/rich-text-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/rich-text-editor.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/stepper.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/winners/winner-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/components/winners/winner-card.tsx -------------------------------------------------------------------------------- /content/blog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/content/blog/index.ts -------------------------------------------------------------------------------- /docs/cron-launches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/docs/cron-launches.md -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/db/index.ts -------------------------------------------------------------------------------- /drizzle/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/db/schema.ts -------------------------------------------------------------------------------- /drizzle/migrations/0000_pink_serpent_society.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/0000_pink_serpent_society.sql -------------------------------------------------------------------------------- /drizzle/migrations/0001_dizzy_kabuki.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/0001_dizzy_kabuki.sql -------------------------------------------------------------------------------- /drizzle/migrations/0002_pale_metal_master.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/0002_pale_metal_master.sql -------------------------------------------------------------------------------- /drizzle/migrations/0003_strange_meggan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/0003_strange_meggan.sql -------------------------------------------------------------------------------- /drizzle/migrations/0004_absent_grandmaster.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "seo_article" ADD COLUMN "image" text; -------------------------------------------------------------------------------- /drizzle/migrations/0005_early_ikaris.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/0005_early_ikaris.sql -------------------------------------------------------------------------------- /drizzle/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0003_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0004_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/0005_snapshot.json -------------------------------------------------------------------------------- /drizzle/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/drizzle/migrations/meta/_journal.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/hooks/use-mobile.ts -------------------------------------------------------------------------------- /lib/auth-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/auth-client.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/comment-rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/comment-rate-limit.ts -------------------------------------------------------------------------------- /lib/comment.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/comment.config.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/content-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/content-utils.ts -------------------------------------------------------------------------------- /lib/discord-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/discord-notification.ts -------------------------------------------------------------------------------- /lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/email.ts -------------------------------------------------------------------------------- /lib/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/hooks/use-debounce.ts -------------------------------------------------------------------------------- /lib/hooks/use-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/hooks/use-search.ts -------------------------------------------------------------------------------- /lib/link-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/link-utils.ts -------------------------------------------------------------------------------- /lib/rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/rate-limit.ts -------------------------------------------------------------------------------- /lib/transactional-emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/transactional-emails.ts -------------------------------------------------------------------------------- /lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/uploadthing.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validations/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/lib/validations/auth.ts -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/mdx-components.tsx -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/images/badges/powered-by-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/powered-by-dark.svg -------------------------------------------------------------------------------- /public/images/badges/powered-by-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/powered-by-light.svg -------------------------------------------------------------------------------- /public/images/badges/top1-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top1-dark.svg -------------------------------------------------------------------------------- /public/images/badges/top1-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top1-light.svg -------------------------------------------------------------------------------- /public/images/badges/top2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top2-dark.svg -------------------------------------------------------------------------------- /public/images/badges/top2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top2-light.svg -------------------------------------------------------------------------------- /public/images/badges/top3-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top3-dark.svg -------------------------------------------------------------------------------- /public/images/badges/top3-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/images/badges/top3-light.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/og-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/og-blog.png -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/og.png -------------------------------------------------------------------------------- /public/oppieD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/oppieD.png -------------------------------------------------------------------------------- /public/oppieG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/oppieG.png -------------------------------------------------------------------------------- /public/sponsors/landinglab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/public/sponsors/landinglab.png -------------------------------------------------------------------------------- /scripts/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/scripts/categories.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlaunch-org/Open-Launch/HEAD/tsconfig.json --------------------------------------------------------------------------------