Add SEO to Community

cgen-4c8215f3ec98441c8e7f3c7cfd4c9d82
This commit is contained in:
Builder.io 2025-10-19 21:22:39 +00:00
parent eba8231dca
commit bed369bc0c

View file

@ -1,4 +1,5 @@
import Layout from "@/components/Layout";
import SEO from "@/components/SEO";
import { Button } from "@/components/ui/button";
import {
Card,
@ -1788,6 +1789,8 @@ export default function Community() {
}
return (
<>
<SEO pageTitle="Community" description="AeThex Community: share progress, discover collaborators, and stay updated." canonical={typeof window!== 'undefined' ? window.location.href : undefined as any} />
<Layout>
<div className="min-h-screen bg-aethex-gradient">
{/* Hero Section */}
@ -4630,5 +4633,6 @@ export default function Community() {
)}
</div>
</Layout>
</>
);
}