├── .deepsource.toml ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── app ├── api │ ├── public-script │ │ └── route.js │ └── support-email │ │ └── route.ts ├── auth │ └── callback │ │ └── route.ts ├── dashboard │ ├── [slug] │ │ ├── loading.tsx │ │ └── page.tsx │ └── page.tsx ├── features │ └── page.tsx ├── globals.css ├── layout.tsx ├── login │ ├── page.tsx │ └── submit-button.tsx ├── logout │ └── page.tsx ├── not-found.tsx ├── page.tsx ├── privacy │ └── page.tsx ├── reset-password │ └── page.tsx ├── signup │ ├── page.tsx │ └── submit-button.tsx ├── styles.css ├── support │ ├── SupportForm.tsx │ └── page.tsx └── terms │ └── page.tsx ├── components.json ├── components ├── AnalyticsPage.tsx ├── AuthButton.tsx ├── BrowsersCard.tsx ├── CountryCard.tsx ├── DemoSection.tsx ├── DeviceCard.tsx ├── DevicesCard.tsx ├── FAQSection.tsx ├── Footer.tsx ├── ForgotPassword.tsx ├── HeroSection.tsx ├── Navbar.tsx ├── NewSiteDialog.tsx ├── OSCard.tsx ├── OpenSource.tsx ├── PathsCard.tsx ├── PrivacyFeatures.tsx ├── PublicURLSwitch.tsx ├── ReferrersCard.tsx ├── ResetPasswordForm.tsx ├── SitesList.tsx ├── Stack.tsx ├── Steps.tsx ├── ViewsBarChart.tsx ├── features.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 │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.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 │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── lib └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon.ico ├── icons │ ├── nextjs.svg │ ├── resend.svg │ ├── shadcnui.svg │ ├── supabase.svg │ ├── supatycs.png │ ├── tremor.jpeg │ └── vercel.svg ├── illustrations │ └── dashboard-empty.svg ├── og.png ├── screenshots │ ├── dashboard-screenshot.png │ └── supabase.png └── track.js ├── tailwind.config.ts ├── tsconfig.json └── utils └── supabase ├── client.ts ├── middleware.ts └── server.ts /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/README.md -------------------------------------------------------------------------------- /app/api/public-script/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/api/public-script/route.js -------------------------------------------------------------------------------- /app/api/support-email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/api/support-email/route.ts -------------------------------------------------------------------------------- /app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/auth/callback/route.ts -------------------------------------------------------------------------------- /app/dashboard/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/dashboard/[slug]/loading.tsx -------------------------------------------------------------------------------- /app/dashboard/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/dashboard/[slug]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/features/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/features/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/login/page.tsx -------------------------------------------------------------------------------- /app/login/submit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/login/submit-button.tsx -------------------------------------------------------------------------------- /app/logout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/logout/page.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/reset-password/page.tsx -------------------------------------------------------------------------------- /app/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/signup/page.tsx -------------------------------------------------------------------------------- /app/signup/submit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/signup/submit-button.tsx -------------------------------------------------------------------------------- /app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/styles.css -------------------------------------------------------------------------------- /app/support/SupportForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/support/SupportForm.tsx -------------------------------------------------------------------------------- /app/support/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/support/page.tsx -------------------------------------------------------------------------------- /app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/app/terms/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components.json -------------------------------------------------------------------------------- /components/AnalyticsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/AnalyticsPage.tsx -------------------------------------------------------------------------------- /components/AuthButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/AuthButton.tsx -------------------------------------------------------------------------------- /components/BrowsersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/BrowsersCard.tsx -------------------------------------------------------------------------------- /components/CountryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/CountryCard.tsx -------------------------------------------------------------------------------- /components/DemoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/DemoSection.tsx -------------------------------------------------------------------------------- /components/DeviceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/DeviceCard.tsx -------------------------------------------------------------------------------- /components/DevicesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/DevicesCard.tsx -------------------------------------------------------------------------------- /components/FAQSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/FAQSection.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ForgotPassword.tsx -------------------------------------------------------------------------------- /components/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/HeroSection.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/NewSiteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/NewSiteDialog.tsx -------------------------------------------------------------------------------- /components/OSCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/OSCard.tsx -------------------------------------------------------------------------------- /components/OpenSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/OpenSource.tsx -------------------------------------------------------------------------------- /components/PathsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/PathsCard.tsx -------------------------------------------------------------------------------- /components/PrivacyFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/PrivacyFeatures.tsx -------------------------------------------------------------------------------- /components/PublicURLSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/PublicURLSwitch.tsx -------------------------------------------------------------------------------- /components/ReferrersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ReferrersCard.tsx -------------------------------------------------------------------------------- /components/ResetPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ResetPasswordForm.tsx -------------------------------------------------------------------------------- /components/SitesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/SitesList.tsx -------------------------------------------------------------------------------- /components/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/Stack.tsx -------------------------------------------------------------------------------- /components/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/Steps.tsx -------------------------------------------------------------------------------- /components/ViewsBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ViewsBarChart.tsx -------------------------------------------------------------------------------- /components/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/features.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/nextjs.svg -------------------------------------------------------------------------------- /public/icons/resend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/resend.svg -------------------------------------------------------------------------------- /public/icons/shadcnui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/shadcnui.svg -------------------------------------------------------------------------------- /public/icons/supabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/supabase.svg -------------------------------------------------------------------------------- /public/icons/supatycs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/supatycs.png -------------------------------------------------------------------------------- /public/icons/tremor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/tremor.jpeg -------------------------------------------------------------------------------- /public/icons/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/icons/vercel.svg -------------------------------------------------------------------------------- /public/illustrations/dashboard-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/illustrations/dashboard-empty.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/og.png -------------------------------------------------------------------------------- /public/screenshots/dashboard-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/screenshots/dashboard-screenshot.png -------------------------------------------------------------------------------- /public/screenshots/supabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/screenshots/supabase.png -------------------------------------------------------------------------------- /public/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/public/track.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/utils/supabase/client.ts -------------------------------------------------------------------------------- /utils/supabase/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/utils/supabase/middleware.ts -------------------------------------------------------------------------------- /utils/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishaanbedi/woyage/HEAD/utils/supabase/server.ts --------------------------------------------------------------------------------