Integrate React components and update homepage layout: added Hero, Feature, Stats, Pricing, FAQ, Contact, and Footer sections; updated global styles and dependencies for React support.

This commit is contained in:
Matthias
2026-04-21 10:11:13 +02:00
parent 54590826c7
commit ccd1cc46dc
19 changed files with 2416 additions and 498 deletions

154
src/components/pricing4.tsx Normal file
View File

@@ -0,0 +1,154 @@
"use client";
import { Check } from "lucide-react";
import { useState } from "react";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Separator } from "@/components/ui/separator";
import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs";
import { cn } from "@/lib/utils";
interface PricingPlan {
name: string;
badge: string;
monthlyPrice: string;
yearlyPrice: string;
features: string[];
buttonText: string;
isPopular?: boolean;
}
interface Pricing4Props {
title?: string;
description?: string;
plans?: PricingPlan[];
className?: string;
}
const Pricing4 = ({
title = "Pricing",
description = "Check out our affordable pricing plans.",
plans = [
{
name: "Free",
badge: "Free",
monthlyPrice: "$0",
yearlyPrice: "$0",
features: [
"Unlimited Integrations",
"Windows, Linux, Mac support",
"24/7 Support",
"Free updates",
],
buttonText: "Get Started",
},
{
name: "Pro",
badge: "Pro",
monthlyPrice: "$29",
yearlyPrice: "$249",
features: [
"Everything in FREE",
"Live call support every month",
"Unlimited Storage",
],
buttonText: "Purchase",
},
{
name: "Elite",
badge: "Elite",
monthlyPrice: "$59",
yearlyPrice: "$549",
features: [
"Everything in PRO",
"Advanced analytics",
"Custom branding",
"Unlimited users",
],
buttonText: "Purchase",
isPopular: true,
},
],
className,
}: Pricing4Props) => {
const [isAnnually, setIsAnnually] = useState(false);
return (
<section className={cn("py-32", className)}>
<div className="container mx-auto">
<div className="flex flex-col gap-6">
<h2 className="text-4xl font-semibold text-pretty lg:text-6xl">
{title}
</h2>
<div className="flex flex-col justify-between gap-10 md:flex-row">
<p className="max-w-3xl text-muted-foreground lg:text-xl">
{description}
</p>
<Tabs
value={isAnnually ? "annually" : "monthly"}
onValueChange={(value: string) =>
setIsAnnually(value === "annually")
}
className="w-fit shrink-0"
aria-label="Billing period"
>
<TabsList className="grid h-11 w-max grid-cols-2 gap-0 rounded-md p-1 text-lg">
<TabsTrigger
value="monthly"
className="h-full min-h-0 px-7 py-0 font-semibold text-muted-foreground data-active:text-foreground"
>
Monthly
</TabsTrigger>
<TabsTrigger
value="annually"
className="h-full min-h-0 px-7 py-0 font-semibold text-muted-foreground data-active:text-foreground"
>
Yearly
</TabsTrigger>
</TabsList>
</Tabs>
</div>
<div className="flex w-full flex-col items-stretch gap-6 md:flex-row">
{plans.map((plan) => (
<div
key={plan.name}
className={`flex w-full flex-col rounded-lg border p-6 text-left ${
plan.isPopular ? "bg-muted" : ""
}`}
>
<Badge className="mb-8 block w-fit uppercase">
{plan.badge}
</Badge>
<h3 className="font-mono text-4xl lg:text-5xl">
{isAnnually ? plan.yearlyPrice : plan.monthlyPrice}
</h3>
<p
className={`text-muted-foreground ${plan.monthlyPrice === "$0" ? "invisible" : ""}`}
>
{isAnnually ? "Per year" : "Per month"}
</p>
<Separator className="my-6" />
<div className="flex h-full flex-col justify-between gap-20">
<ul className="space-y-4 text-muted-foreground md:leading-snug">
{plan.features.map((feature, featureIndex) => (
<li
key={featureIndex}
className="flex items-center gap-2"
>
<Check className="size-4 shrink-0" aria-hidden="true" />
<span>{feature}</span>
</li>
))}
</ul>
<Button className="w-full">{plan.buttonText}</Button>
</div>
</div>
))}
</div>
</div>
</div>
</section>
);
};
export { Pricing4 };