Add Wix main page
cgen-5c49b61888a642bea9c841a69a550ed2
This commit is contained in:
parent
f9f246835b
commit
7645168b4c
1 changed files with 40 additions and 0 deletions
40
client/pages/Wix.tsx
Normal file
40
client/pages/Wix.tsx
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import WixHero from "@/components/wix/WixHero";
|
||||
import ServiceCard from "@/components/wix/ServiceCard";
|
||||
import PricingTable from "@/components/wix/PricingTable";
|
||||
import FAQList from "@/components/wix/FAQ";
|
||||
import LeadForm from "@/components/wix/LeadForm";
|
||||
import services from "@/data/wix/services";
|
||||
import pricing from "@/data/wix/pricing";
|
||||
import faqs from "@/data/wix/faqs";
|
||||
|
||||
export default function Wix() {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient">
|
||||
<WixHero />
|
||||
|
||||
<section className="container mx-auto px-4 py-10">
|
||||
<h2 className="text-2xl md:text-3xl font-semibold mb-6">What we build</h2>
|
||||
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
|
||||
{services.map((s) => (
|
||||
<ServiceCard key={s.id} name={s.name} summary={s.summary} highlights={s.highlights} />
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="container mx-auto px-4 py-10">
|
||||
<h2 className="text-2xl md:text-3xl font-semibold mb-6">Pricing</h2>
|
||||
<PricingTable tiers={pricing} />
|
||||
</section>
|
||||
|
||||
<LeadForm />
|
||||
|
||||
<section className="container mx-auto px-4 py-10">
|
||||
<h2 className="text-2xl md:text-3xl font-semibold mb-6">FAQ</h2>
|
||||
<FAQList items={faqs.slice(0, 4)} />
|
||||
</section>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue