diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 7184453..eec0b86 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -7,34 +7,13 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
- {
- "name": "Home",
- "href": "#hero"
- },
- {
- "name": "About Us",
- "href": "#about"
- },
- {
- "name": "Menu",
- "href": "#menu"
- },
- {
- "name": "Gallery",
- "href": "#gallery"
- },
- {
- "name": "Contact",
- "href": "#contact"
- },
- {
- "name": "Testimonials",
- "href": "#testimonials"
- },
- {
- "name": "Faq",
- "href": "#faq"
- }
+ { "name": "Home", "href": "#hero" },
+ { "name": "About Us", "href": "#about" },
+ { "name": "Menu", "href": "#menu" },
+ { "name": "Gallery", "href": "#gallery" },
+ { "name": "Contact", "href": "#contact" },
+ { "name": "Testimonials", "href": "#testimonials" },
+ { "name": "Faq", "href": "#faq" }
];
return (
@@ -42,81 +21,47 @@ export default function Layout() {
+ logo="Royal Grill"
+ logoImageSrc="http://img.b2bpic.net/free-vector/cooking-landing-page-template-with-photo_23-2148368952.jpg"
+ ctaButton={{
+ text: "Reserve Now", href: "#contact"}}
+ navItems={navItems}
+ />
+ ]}
+ copyright="© 2024 Royal Grill. All rights reserved."
+ links={[
+ { label: "Twitter", href: "#" },
+ { label: "Instagram", href: "#" },
+ ]}
+ />
);