Add Wix FAQ page
cgen-bcd30cad017849fcb942cb088264db1e
This commit is contained in:
parent
78a96a0a9d
commit
5740cdfc58
1 changed files with 16 additions and 0 deletions
16
client/pages/WixFaq.tsx
Normal file
16
client/pages/WixFaq.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import Layout from "@/components/Layout";
|
||||||
|
import FAQList from "@/components/wix/FAQ";
|
||||||
|
import faqs from "@/data/wix/faqs";
|
||||||
|
|
||||||
|
export default function WixFaq() {
|
||||||
|
return (
|
||||||
|
<Layout>
|
||||||
|
<div className="min-h-screen bg-aethex-gradient py-10">
|
||||||
|
<section className="container mx-auto px-4">
|
||||||
|
<h1 className="text-3xl md:text-4xl font-bold mb-6">Wix FAQ</h1>
|
||||||
|
<FAQList items={faqs} />
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue