├── .env.example ├── .gitignore ├── README.md ├── components.json ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── icons │ ├── clock.svg │ ├── icon.svg │ ├── magicpen.svg │ ├── metric-one.svg │ ├── metric-three.svg │ ├── metric-two.svg │ ├── perk-four.svg │ ├── perk-one.svg │ ├── perk-three.svg │ ├── perk-two.svg │ └── shield.svg └── images │ ├── dashboard.png │ ├── dashboard.svg │ ├── f1.svg │ ├── f2.svg │ ├── f3.svg │ ├── f4.svg │ ├── grid-lines.svg │ ├── hero-gradient.svg │ ├── hiw-one.svg │ ├── hiw-three.svg │ ├── hiw-two.svg │ ├── person-five.jpeg │ ├── person-four.jpeg │ ├── person-one.jpg │ ├── person-six.jpg │ ├── person-three.jpg │ ├── person-two.jpg │ └── quote.svg ├── src ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ ├── signin │ │ │ └── page.tsx │ │ └── signup │ │ │ └── page.tsx │ ├── (marketing) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── dashboard │ │ └── page.tsx │ └── layout.tsx ├── components │ ├── cta.tsx │ ├── faq.tsx │ ├── features.tsx │ ├── footer.tsx │ ├── global │ │ ├── animation-container.tsx │ │ ├── icons.tsx │ │ ├── images.tsx │ │ └── wrapper.tsx │ ├── hero.tsx │ ├── how-it-works.tsx │ ├── navbar.tsx │ ├── perks.tsx │ ├── platform-metrics.tsx │ ├── pricing.tsx │ ├── signout.tsx │ ├── testimonials.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 │ │ ├── flickering-grid.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── marquee.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── section-badge.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.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 ├── constants │ ├── faq.ts │ ├── features.ts │ ├── fonts.ts │ ├── how-it-works.ts │ ├── index.ts │ ├── metrics.ts │ ├── nav-links.ts │ ├── perks.ts │ ├── pricing.ts │ ├── reviews.ts │ └── testimonials.ts ├── hooks │ ├── index.ts │ ├── use-click-outside.ts │ ├── use-mobile.tsx │ └── use-toast.ts ├── lib │ ├── cn.ts │ └── index.ts ├── middleware.ts ├── styles │ └── globals.css └── utils │ ├── index.ts │ └── metadata.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/clock.svg -------------------------------------------------------------------------------- /public/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/icon.svg -------------------------------------------------------------------------------- /public/icons/magicpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/magicpen.svg -------------------------------------------------------------------------------- /public/icons/metric-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/metric-one.svg -------------------------------------------------------------------------------- /public/icons/metric-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/metric-three.svg -------------------------------------------------------------------------------- /public/icons/metric-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/metric-two.svg -------------------------------------------------------------------------------- /public/icons/perk-four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/perk-four.svg -------------------------------------------------------------------------------- /public/icons/perk-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/perk-one.svg -------------------------------------------------------------------------------- /public/icons/perk-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/perk-three.svg -------------------------------------------------------------------------------- /public/icons/perk-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/perk-two.svg -------------------------------------------------------------------------------- /public/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/icons/shield.svg -------------------------------------------------------------------------------- /public/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/dashboard.png -------------------------------------------------------------------------------- /public/images/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/dashboard.svg -------------------------------------------------------------------------------- /public/images/f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/f1.svg -------------------------------------------------------------------------------- /public/images/f2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/f2.svg -------------------------------------------------------------------------------- /public/images/f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/f3.svg -------------------------------------------------------------------------------- /public/images/f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/f4.svg -------------------------------------------------------------------------------- /public/images/grid-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/grid-lines.svg -------------------------------------------------------------------------------- /public/images/hero-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/hero-gradient.svg -------------------------------------------------------------------------------- /public/images/hiw-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/hiw-one.svg -------------------------------------------------------------------------------- /public/images/hiw-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/hiw-three.svg -------------------------------------------------------------------------------- /public/images/hiw-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/hiw-two.svg -------------------------------------------------------------------------------- /public/images/person-five.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-five.jpeg -------------------------------------------------------------------------------- /public/images/person-four.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-four.jpeg -------------------------------------------------------------------------------- /public/images/person-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-one.jpg -------------------------------------------------------------------------------- /public/images/person-six.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-six.jpg -------------------------------------------------------------------------------- /public/images/person-three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-three.jpg -------------------------------------------------------------------------------- /public/images/person-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/person-two.jpg -------------------------------------------------------------------------------- /public/images/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/public/images/quote.svg -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/cta.tsx -------------------------------------------------------------------------------- /src/components/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/faq.tsx -------------------------------------------------------------------------------- /src/components/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/features.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/global/animation-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/global/animation-container.tsx -------------------------------------------------------------------------------- /src/components/global/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/global/icons.tsx -------------------------------------------------------------------------------- /src/components/global/images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/global/images.tsx -------------------------------------------------------------------------------- /src/components/global/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/global/wrapper.tsx -------------------------------------------------------------------------------- /src/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/hero.tsx -------------------------------------------------------------------------------- /src/components/how-it-works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/how-it-works.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/perks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/perks.tsx -------------------------------------------------------------------------------- /src/components/platform-metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/platform-metrics.tsx -------------------------------------------------------------------------------- /src/components/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/pricing.tsx -------------------------------------------------------------------------------- /src/components/signout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/signout.tsx -------------------------------------------------------------------------------- /src/components/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/testimonials.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/flickering-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/flickering-grid.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/marquee.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/section-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/section-badge.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/constants/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/faq.ts -------------------------------------------------------------------------------- /src/constants/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/features.ts -------------------------------------------------------------------------------- /src/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/fonts.ts -------------------------------------------------------------------------------- /src/constants/how-it-works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/how-it-works.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/metrics.ts -------------------------------------------------------------------------------- /src/constants/nav-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/nav-links.ts -------------------------------------------------------------------------------- /src/constants/perks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/perks.ts -------------------------------------------------------------------------------- /src/constants/pricing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/pricing.ts -------------------------------------------------------------------------------- /src/constants/reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/reviews.ts -------------------------------------------------------------------------------- /src/constants/testimonials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/constants/testimonials.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/use-click-outside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/hooks/use-click-outside.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/lib/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/lib/cn.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/src/utils/metadata.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas-29/propease/HEAD/tsconfig.json --------------------------------------------------------------------------------