diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 580bffc..f2cd517 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -8,32 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
- "name": "Home",
- "href": "/"
+ "name": "Home", "href": "/"
},
{
- "name": "About Us",
- "href": "/about"
+ "name": "About Us", "href": "/about"
},
{
- "name": "Products",
- "href": "/products"
+ "name": "Products", "href": "/products"
},
{
- "name": "Industries",
- "href": "/industries"
+ "name": "Industries", "href": "/industries"
},
{
- "name": "Projects",
- "href": "/projects"
+ "name": "Projects", "href": "/projects"
},
{
- "name": "Contact Us",
- "href": "/contact"
- },
- {
- "name": "Hero",
- "href": "#hero"
+ "name": "Contact Us", "href": "/contact"
}
];
@@ -42,66 +32,49 @@ export default function Layout() {
+ logo="Ghani Elevators"
+ logoImageSrc="http://img.b2bpic.net/free-vector/monogram-logo-design-template_23-2151214057.jpg"
+ ctaButton={{
+ text: "Get in Touch", href: "/contact"}}
+ navItems={navItems} />
+ ]}
+ />
);