diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 3f26f6d..ca9a172 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
- "name": "Menu",
- "href": "#menu"
+ "name": "Menu", "href": "#menu"
},
{
- "name": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Pricing",
- "href": "#pricing"
+ "name": "Pricing", "href": "#pricing"
},
{
- "name": "FAQ",
- "href": "#faq"
+ "name": "FAQ", "href": "#faq"
},
{
- "name": "Hero",
- "href": "#hero"
+ "name": "Hero", "href": "#hero"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,36 +36,29 @@ export default function Layout() {
+ logo="Tasty Stall"
+ logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dquoks"
+ ctaButton={{
+ text: "Order Now", href: "#contact"}}
+ navItems={navItems}
+ />
+ brand="Tasty Stall"
+ copyright="© 2024 Tasty Stall Inc. All rights reserved."
+ socialLinks={[
+ {
+ icon: "Instagram", href: "#"},
+ {
+ icon: "Facebook", href: "#"},
+ {
+ icon: "Twitter", href: "#"},
+ ]}
+ />
);