39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import PageHeader from "@/sections/PageHeader";
|
|
import Newsletter from "@/sections/Newsletter/Newsletter";
|
|
import Background from "@/components/Utilities/Background";
|
|
import Footer from "@/components/Footer";
|
|
import Payment from "@/sections/Payment";
|
|
import Spacer from "@/components/Utilities/Spacer";
|
|
|
|
export default function PricingPage() {
|
|
return (
|
|
<main
|
|
id="content"
|
|
role="main"
|
|
className="h-full flex flex-col min-h-screen mx-auto w-screen overflow-hidden bg-base-100 "
|
|
>
|
|
<Background>
|
|
<PageHeader
|
|
title="Pricing"
|
|
subtitle={
|
|
<>
|
|
{" "}
|
|
<h2 className="text-base-content text-2xl font-medium content text-center max-w-6xl mx-auto px-6">
|
|
Are you ready for fresh South West produce to be delivered to
|
|
your door?
|
|
</h2>
|
|
</>
|
|
}
|
|
/>
|
|
<Payment type="one_time" />
|
|
<Spacer className="mt-auto" />
|
|
<Newsletter />
|
|
<Footer />
|
|
</Background>
|
|
</main>
|
|
);
|
|
}
|