diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index f827597..7e9c176 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -8,67 +8,64 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
- {
- "name": "Home",
- "href": "#hero"
- },
- {
- "name": "Products",
- "href": "#products"
- },
- {
- "name": "Contact",
- "href": "#contact"
- },
- {
- "name": "About",
- "href": "#about"
- },
- {
- "name": "Pricing",
- "href": "#pricing"
- },
- {
- "name": "Testimonials",
- "href": "#testimonials"
- },
- {
- "name": "Faq",
- "href": "#faq"
- }
-];
+ {
+ "name": "Home",
+ "href": "#hero"
+ },
+ {
+ "name": "Products",
+ "href": "#products"
+ },
+ {
+ "name": "Contact",
+ "href": "#contact"
+ },
+ {
+ "name": "About",
+ "href": "#about"
+ },
+ {
+ "name": "Pricing",
+ "href": "#pricing"
+ },
+ {
+ "name": "Faq",
+ "href": "#faq"
+ }
+ ];
return (
+ logo="Comet Paints and Allied Products"
+ ctaButton={{
+ text: "Order Now",
+ href: "#contact",
+ }}
+ navItems={navItems}
+ />
+ brand="Comet Paints and Allied Products"
+ copyright="© 2006-2024 Comet Paints and Allied Products. All rights reserved."
+ socialLinks={[
+ {
+ icon: Instagram,
+ href: "#",
+ },
+ {
+ icon: Facebook,
+ href: "#",
+ },
+ ]}
+ />
);
-}
+}
\ No newline at end of file
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 154deec..212994e 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -1,38 +1,24 @@
-// AUTO-GENERATED shell by per-section-migrate.
-// Section bodies live in .//sections/.tsx. Edit the section
-// files directly. Non-block content (wrappers, non-inlinable sections) is
-// preserved inline; extracted section blocks become refs.
-
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ProductsSection from './HomePage/sections/Products';
import PricingSection from './HomePage/sections/Pricing';
-import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import SocialProofSection from './HomePage/sections/SocialProof';
import ContactSection from './HomePage/sections/Contact';
+import GallerySection from './HomePage/sections/Gallery';
-
-import GallerySection from './HomePage/sections/Gallery';export default function HomePage(): React.JSX.Element {
+export default function HomePage(): React.JSX.Element {
return (
-<>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ <>
+
+
+
+
+
+
+
+
>
);
-}
+}
\ No newline at end of file