diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 1c93441..c980edb 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
- "name": "Home",
- "href": "#hero"
+ "name": "Home", "href": "#hero"
},
{
- "name": "Menu",
- "href": "#products"
+ "name": "Menu", "href": "#products"
},
{
- "name": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "Pricing",
- "href": "#pricing"
+ "name": "Pricing", "href": "#pricing"
},
{
- "name": "Metrics",
- "href": "#metrics"
+ "name": "Metrics", "href": "#metrics"
}
];
@@ -42,70 +35,51 @@ export default function Layout() {
+ logo="It's Boba Time"
+ logoImageSrc="http://img.b2bpic.net/free-vector/boba-ice-illustration-mascot-logo-design_779267-934.jpg"
+ ctaButton={{
+ text: "Order Online", href: "#"}}
+ navItems={navItems} />
+ ]}
+ />
);