Wrap Blog return with fragment and SEO and close properly

cgen-f4e44a22e5f949ff80bb25add0ad8ca3
This commit is contained in:
Builder.io 2025-10-19 21:23:48 +00:00
parent 0ed33cd468
commit e18c8bbc55

View file

@ -208,6 +208,8 @@ const Blog = () => {
};
return (
<>
<SEO pageTitle="Blog" description="Insights and updates from AeThex: tutorials, platform news, and community highlights." canonical={typeof window!== 'undefined' ? window.location.href : undefined as any} />
<Layout>
<div className="bg-slate-950 text-foreground">
<BlogHero
@ -337,6 +339,7 @@ const Blog = () => {
</section>
</div>
</Layout>
</>
);
};