Merge version_1_1778016931257 into main #1
@@ -7,32 +7,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
export default function Layout() {
|
||||
const navItems = [
|
||||
{
|
||||
"name": "Home",
|
||||
"href": "#home"
|
||||
"name": "Home", "href": "#home"
|
||||
},
|
||||
{
|
||||
"name": "About",
|
||||
"href": "#about"
|
||||
"name": "About", "href": "#about"
|
||||
},
|
||||
{
|
||||
"name": "Wines",
|
||||
"href": "#wines"
|
||||
"name": "Wines", "href": "#wines"
|
||||
},
|
||||
{
|
||||
"name": "Experience",
|
||||
"href": "#experience"
|
||||
"name": "Experience", "href": "#experience"
|
||||
},
|
||||
{
|
||||
"name": "Team",
|
||||
"href": "#team"
|
||||
"name": "Team", "href": "#team"
|
||||
},
|
||||
{
|
||||
"name": "Contact",
|
||||
"href": "#contact"
|
||||
"name": "Contact", "href": "#contact"
|
||||
},
|
||||
{
|
||||
"name": "Features",
|
||||
"href": "#features"
|
||||
"name": "Features", "href": "#features"
|
||||
}
|
||||
];
|
||||
|
||||
@@ -40,10 +33,9 @@ export default function Layout() {
|
||||
<StyleProvider buttonVariant="arrow" siteBackground="aurora" heroBackground="radialGradient">
|
||||
<SiteBackgroundSlot />
|
||||
<NavbarDropdown
|
||||
logo="Vino Estate"
|
||||
ctaButton={{
|
||||
text: "Book a Tasting",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Book a Tasting", href: "#contact"}}
|
||||
navItems={navItems} />
|
||||
<main className="flex-grow">
|
||||
<Outlet />
|
||||
@@ -54,45 +46,29 @@ export default function Layout() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#home",
|
||||
},
|
||||
label: "Home", href: "#home"},
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our Story", href: "#about"},
|
||||
{
|
||||
label: "Our Wines",
|
||||
href: "#wines",
|
||||
},
|
||||
label: "Our Wines", href: "#wines"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Wine Club",
|
||||
href: "#experience",
|
||||
},
|
||||
label: "Wine Club", href: "#experience"},
|
||||
{
|
||||
label: "Team",
|
||||
href: "#team",
|
||||
},
|
||||
label: "Team", href: "#team"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user