2023-12-27 17:08:44 +03:00
|
|
|
"use client";
|
|
|
|
import { StripePricingTable } from "@/lib/components/Stripe/PricingModal/components/PricingTable/PricingTable";
|
|
|
|
|
|
|
|
import {
|
|
|
|
FooterSection,
|
|
|
|
HomeHeader,
|
|
|
|
HomeSection,
|
|
|
|
TestimonialsSection,
|
|
|
|
} from "../(home)/components";
|
2023-12-27 17:39:02 +03:00
|
|
|
import { UseCases } from "../(home)/components/UseCases/UseCases";
|
2023-12-27 17:08:44 +03:00
|
|
|
|
|
|
|
const ContactSalesPage = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div className="bg-[#FCFAF6]">
|
|
|
|
<HomeHeader color="black" />
|
|
|
|
|
|
|
|
<main className="relative flex flex-col items-center px-10">
|
2023-12-29 20:22:56 +03:00
|
|
|
<section className="flex flex-col h-fit mt-5 mb-10 p-10 w-full">
|
|
|
|
<div className="rounded-xl overflow-hidden">
|
|
|
|
<div className="p-8 text-center">
|
|
|
|
<h1 className="text-6xl font-bold text-primary mb-4">Pricing</h1>
|
|
|
|
<p className="text-2xl font-semibold text-gray-700 mb-6">
|
|
|
|
Explore our extensive free tier, or upgrade for more features.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* Stripe Pricing Table */}
|
|
|
|
|
|
|
|
<StripePricingTable />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<HomeSection bg="bg-[#362469]">
|
2023-12-27 17:39:02 +03:00
|
|
|
<UseCases />
|
|
|
|
<div />
|
|
|
|
</HomeSection>
|
2023-12-29 20:22:56 +03:00
|
|
|
|
|
|
|
<HomeSection bg="bg-[#FCFAF6]">
|
2023-12-27 17:08:44 +03:00
|
|
|
<TestimonialsSection />
|
|
|
|
</HomeSection>
|
2023-12-29 20:22:56 +03:00
|
|
|
|
2023-12-27 17:08:44 +03:00
|
|
|
<HomeSection bg="bg-gradient-to-b from-[#D07DF9] to-[#7A27FD]">
|
|
|
|
<FooterSection />
|
|
|
|
</HomeSection>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ContactSalesPage;
|