├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── icons │ ├── bot-dark.svg │ ├── bot.svg │ ├── icon.svg │ ├── logo.png │ ├── logo.svg │ └── sparkles.svg └── images │ ├── Medicine-amico-2.svg │ ├── banner.svg │ ├── dashboard.png │ ├── mockup-phone.svg │ ├── mockup.svg │ ├── onboarding.svg │ └── thumbnail.png ├── src ├── actions │ ├── create-checkout-session.ts │ ├── create-medication.ts │ ├── create-messages.ts │ ├── create-symptom.ts │ ├── get-health-tips.ts │ ├── get-messages.ts │ ├── get-recommendations.ts │ ├── index.ts │ └── update-user.ts ├── app │ ├── (marketing) │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ ├── api │ │ ├── onboarding │ │ │ ├── step-four │ │ │ │ └── route.ts │ │ │ ├── step-one │ │ │ │ └── route.ts │ │ │ ├── step-three │ │ │ │ └── route.ts │ │ │ └── step-two │ │ │ │ └── route.ts │ │ └── webhooks │ │ │ └── route.ts │ ├── auth │ │ ├── auth-callback │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ ├── signin │ │ │ └── page.tsx │ │ └── signup │ │ │ └── page.tsx │ ├── dashboard │ │ ├── account │ │ │ ├── billing │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ ├── medications │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── settings │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ └── symptoms │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── ai │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── health-status │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── health-tips │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── page.tsx │ │ └── summary │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ └── onboarding │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ └── page.tsx ├── components │ ├── dashboard │ │ ├── chat-box.tsx │ │ ├── checkout-button.tsx │ │ ├── health-tips.tsx │ │ ├── recommendations.tsx │ │ └── sidebar.tsx │ ├── global │ │ ├── animation-container.tsx │ │ ├── icons.tsx │ │ ├── max-width-wrapper.tsx │ │ └── providers.tsx │ ├── index.ts │ ├── loader.tsx │ ├── modals │ │ ├── health-plan-modal.tsx │ │ ├── medication-modal.tsx │ │ ├── symptom-modal.tsx │ │ └── user-details-modal.tsx │ ├── navigation │ │ ├── dashboard-navbar.tsx │ │ ├── footer.tsx │ │ ├── navbar.tsx │ │ └── user-account-navbar.tsx │ ├── onboarding │ │ ├── header.tsx │ │ ├── step-five.tsx │ │ ├── step-four.tsx │ │ ├── step-one.tsx │ │ ├── step-three.tsx │ │ ├── step-two.tsx │ │ └── steps.tsx │ ├── ui │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── magic-card.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx │ └── user-account.tsx ├── constants │ ├── features.ts │ ├── fonts.ts │ ├── index.ts │ ├── links.ts │ ├── pricing.ts │ └── steps.ts ├── hooks │ ├── index.ts │ ├── use-settings.ts │ └── use-user-modal.ts ├── lib │ ├── cn.ts │ ├── db.ts │ ├── google.ts │ ├── index.ts │ ├── stripe.ts │ └── validators │ │ ├── step-four.ts │ │ ├── step-one.ts │ │ ├── step-three.ts │ │ └── step-two.ts ├── middleware.ts ├── styles │ └── globals.css ├── types │ └── index.ts └── utils │ ├── generate-metadata.ts │ ├── generate-prompt.ts │ └── index.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/icons/bot-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/bot-dark.svg -------------------------------------------------------------------------------- /public/icons/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/bot.svg -------------------------------------------------------------------------------- /public/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/icon.svg -------------------------------------------------------------------------------- /public/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/logo.png -------------------------------------------------------------------------------- /public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/logo.svg -------------------------------------------------------------------------------- /public/icons/sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/icons/sparkles.svg -------------------------------------------------------------------------------- /public/images/Medicine-amico-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/Medicine-amico-2.svg -------------------------------------------------------------------------------- /public/images/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/banner.svg -------------------------------------------------------------------------------- /public/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/dashboard.png -------------------------------------------------------------------------------- /public/images/mockup-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/mockup-phone.svg -------------------------------------------------------------------------------- /public/images/mockup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/mockup.svg -------------------------------------------------------------------------------- /public/images/onboarding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/onboarding.svg -------------------------------------------------------------------------------- /public/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/public/images/thumbnail.png -------------------------------------------------------------------------------- /src/actions/create-checkout-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/create-checkout-session.ts -------------------------------------------------------------------------------- /src/actions/create-medication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/create-medication.ts -------------------------------------------------------------------------------- /src/actions/create-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/create-messages.ts -------------------------------------------------------------------------------- /src/actions/create-symptom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/create-symptom.ts -------------------------------------------------------------------------------- /src/actions/get-health-tips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/get-health-tips.ts -------------------------------------------------------------------------------- /src/actions/get-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/get-messages.ts -------------------------------------------------------------------------------- /src/actions/get-recommendations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/get-recommendations.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/actions/update-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/actions/update-user.ts -------------------------------------------------------------------------------- /src/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/(marketing)/loading.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /src/app/api/onboarding/step-four/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/api/onboarding/step-four/route.ts -------------------------------------------------------------------------------- /src/app/api/onboarding/step-one/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/api/onboarding/step-one/route.ts -------------------------------------------------------------------------------- /src/app/api/onboarding/step-three/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/api/onboarding/step-three/route.ts -------------------------------------------------------------------------------- /src/app/api/onboarding/step-two/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/api/onboarding/step-two/route.ts -------------------------------------------------------------------------------- /src/app/api/webhooks/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/api/webhooks/route.ts -------------------------------------------------------------------------------- /src/app/auth/auth-callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/auth/auth-callback/page.tsx -------------------------------------------------------------------------------- /src/app/auth/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/auth/loading.tsx -------------------------------------------------------------------------------- /src/app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /src/app/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/auth/signup/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/billing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/billing/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/billing/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/medications/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/medications/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/medications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/medications/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/settings/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/settings/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/symptoms/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/symptoms/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/symptoms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/account/symptoms/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/ai/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/ai/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/ai/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/ai/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/health-status/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/health-status/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/health-status/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/health-status/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/health-tips/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/health-tips/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/health-tips/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/health-tips/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/summary/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/summary/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/summary/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/dashboard/summary/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/onboarding/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/onboarding/layout.tsx -------------------------------------------------------------------------------- /src/app/onboarding/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/onboarding/loading.tsx -------------------------------------------------------------------------------- /src/app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/app/onboarding/page.tsx -------------------------------------------------------------------------------- /src/components/dashboard/chat-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/dashboard/chat-box.tsx -------------------------------------------------------------------------------- /src/components/dashboard/checkout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/dashboard/checkout-button.tsx -------------------------------------------------------------------------------- /src/components/dashboard/health-tips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/dashboard/health-tips.tsx -------------------------------------------------------------------------------- /src/components/dashboard/recommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/dashboard/recommendations.tsx -------------------------------------------------------------------------------- /src/components/dashboard/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/dashboard/sidebar.tsx -------------------------------------------------------------------------------- /src/components/global/animation-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/global/animation-container.tsx -------------------------------------------------------------------------------- /src/components/global/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/global/icons.tsx -------------------------------------------------------------------------------- /src/components/global/max-width-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/global/max-width-wrapper.tsx -------------------------------------------------------------------------------- /src/components/global/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/global/providers.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/loader.tsx -------------------------------------------------------------------------------- /src/components/modals/health-plan-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/modals/health-plan-modal.tsx -------------------------------------------------------------------------------- /src/components/modals/medication-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/modals/medication-modal.tsx -------------------------------------------------------------------------------- /src/components/modals/symptom-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/modals/symptom-modal.tsx -------------------------------------------------------------------------------- /src/components/modals/user-details-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/modals/user-details-modal.tsx -------------------------------------------------------------------------------- /src/components/navigation/dashboard-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/navigation/dashboard-navbar.tsx -------------------------------------------------------------------------------- /src/components/navigation/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/navigation/footer.tsx -------------------------------------------------------------------------------- /src/components/navigation/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/navigation/navbar.tsx -------------------------------------------------------------------------------- /src/components/navigation/user-account-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/navigation/user-account-navbar.tsx -------------------------------------------------------------------------------- /src/components/onboarding/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/header.tsx -------------------------------------------------------------------------------- /src/components/onboarding/step-five.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/step-five.tsx -------------------------------------------------------------------------------- /src/components/onboarding/step-four.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/step-four.tsx -------------------------------------------------------------------------------- /src/components/onboarding/step-one.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/step-one.tsx -------------------------------------------------------------------------------- /src/components/onboarding/step-three.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/step-three.tsx -------------------------------------------------------------------------------- /src/components/onboarding/step-two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/step-two.tsx -------------------------------------------------------------------------------- /src/components/onboarding/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/onboarding/steps.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/magic-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/magic-card.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/user-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/components/user-account.tsx -------------------------------------------------------------------------------- /src/constants/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/features.ts -------------------------------------------------------------------------------- /src/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/fonts.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/links.ts -------------------------------------------------------------------------------- /src/constants/pricing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/pricing.ts -------------------------------------------------------------------------------- /src/constants/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/constants/steps.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/use-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/hooks/use-settings.ts -------------------------------------------------------------------------------- /src/hooks/use-user-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/hooks/use-user-modal.ts -------------------------------------------------------------------------------- /src/lib/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/cn.ts -------------------------------------------------------------------------------- /src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/db.ts -------------------------------------------------------------------------------- /src/lib/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/google.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/stripe.ts -------------------------------------------------------------------------------- /src/lib/validators/step-four.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/validators/step-four.ts -------------------------------------------------------------------------------- /src/lib/validators/step-one.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/validators/step-one.ts -------------------------------------------------------------------------------- /src/lib/validators/step-three.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/validators/step-three.ts -------------------------------------------------------------------------------- /src/lib/validators/step-two.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/lib/validators/step-two.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | // type for animation container 2 | -------------------------------------------------------------------------------- /src/utils/generate-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/utils/generate-metadata.ts -------------------------------------------------------------------------------- /src/utils/generate-prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/utils/generate-prompt.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/cura/HEAD/tsconfig.json --------------------------------------------------------------------------------