From 75a683829095cd62e74f66660bdaa081834f9f3d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 21:21:27 +0000 Subject: [PATCH] Add SEO component usage to key pages cgen-aed7c7fcdbf145cda64f6d55b8b01d78 --- client/pages/Index.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index 352b9da9..627acdd2 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -1,5 +1,6 @@ import { useState, useEffect } from "react"; import Layout from "@/components/Layout"; +import SEO from "@/components/SEO"; import { Button } from "@/components/ui/button"; import { Card, @@ -265,7 +266,13 @@ export default function Index() { } return ( - + <> + + {/* Top Banner (editable via Admin → Operations) */} {homeBanner?.enabled !== false && ( + ); }