diff --git a/packages/frontend/src/pages/Landing.tsx b/packages/frontend/src/pages/Landing.tsx index bab3e2e..7af676b 100644 --- a/packages/frontend/src/pages/Landing.tsx +++ b/packages/frontend/src/pages/Landing.tsx @@ -1,13 +1,10 @@ import { useState } from "react"; import { Link } from "react-router-dom"; import { LoginModal } from "@/components/login-modal"; -import { PricingCard, pricingTiers } from "@/components/pricing-card"; import { useSession } from "@/components/session-provider"; import ThemeToggle from "@/components/theme-toggle"; import { Button } from "@/components/ui/button"; import Icon from "@/components/ui/icon"; -import { Switch } from "@/components/ui/switch"; -import { cn } from "@/lib/utils"; const faqs = [ { @@ -32,7 +29,6 @@ const faqs = [ export default function Landing() { const { user, isLoading } = useSession(); - const [billingPeriod, setBillingPeriod] = useState<"monthly" | "annual">("annual"); const [loginModalOpen, setLoginModalOpen] = useState(false); return ( @@ -221,99 +217,29 @@ export default function Landing() { {/* pricing section */} -
+

Simple, transparent pricing

Choose the plan that fits your team. Scale as you grow.

- - {/* billing toggle */} -
- - setBillingPeriod(checked ? "annual" : "monthly")} - className="bg-border data-[state=checked]:bg-border! data-[state=unchecked]:bg-border!" - thumbClassName="bg-personality dark:bg-personality data-[state=checked]:bg-personality! data-[state=unchecked]:bg-personality!" - aria-label="toggle billing period" - /> - - - Save 17% - -
+
+
-
- {pricingTiers.map((tier) => ( - setLoginModalOpen(true)} - /> - ))} -
- - {/* trust signals */} -
-
- -

Secure & Encrypted

-

Your data is safe with us

-
-
- -

Free Starter Plan

-

Get started instantly

-
-
- -

Money Back Guarantee

-

30-day no-risk policy

-
-
- - {/* faq section */} -
-
-

Frequently Asked Questions

-
- {faqs.map((faq) => ( -
-

{faq.question}

-

{faq.answer}

-
- ))} -
+ {/* faq section */} +
+
+

Frequently Asked Questions

+
+ {faqs.map((faq) => ( +
+

{faq.question}

+

{faq.answer}

+
+ ))}