Add Contact page

cgen-610870d988534a65afc204938fab2d46
This commit is contained in:
Builder.io 2025-09-27 20:20:22 +00:00
parent 8664b8612d
commit 5abb43ccd7

24
client/pages/Contact.tsx Normal file
View file

@ -0,0 +1,24 @@
import Layout from "@/components/Layout";
export default function Contact() {
return (
<Layout>
<div className="min-h-screen bg-aethex-gradient py-12">
<div className="container mx-auto px-4 max-w-3xl space-y-8">
<h1 className="text-3xl font-bold text-gradient-purple">Contact Us</h1>
<p className="text-muted-foreground">Have a project or question? Reach out and well get back within 12 business days.</p>
<div className="grid gap-6">
<div className="p-6 rounded-xl bg-card/50 border border-border/50">
<h2 className="font-semibold mb-2">Email</h2>
<p className="text-sm text-muted-foreground">support@aethex.biz</p>
</div>
<div className="p-6 rounded-xl bg-card/50 border border-border/50">
<h2 className="font-semibold mb-2">Community</h2>
<p className="text-sm text-muted-foreground">Join the community hub to ask questions and collaborate.</p>
</div>
</div>
</div>
</div>
</Layout>
);
}