Merge version_2 into main #2
21
src/app/about/page.tsx
Normal file
21
src/app/about/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]} brandName="Brunit The Brewery" button={{ text: "Book a Table", href: "/contact" }} />
|
||||
<div className="pt-32 pb-20">
|
||||
<MediaAbout title="About Brunit" description="We are dedicated to bringing the finest craft beer experience to Vijayawada." imageSrc="https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b" useInvertedBackground={false} />
|
||||
</div>
|
||||
<FooterLogoEmphasis logoText="Brunit" columns={[{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] }, { items: [{ label: "Contact", href: "/contact" }] }]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,135 +2,21 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import { Mail } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="fluid"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Events",
|
||||
id: "/events",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Brunit The Brewery"
|
||||
button={{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Reserve Your Table"
|
||||
description="Secure your spot for the best night in Vijayawada."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Message or Event Details",
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/modern-stylish-map-interface-with-clean--1774863708276-5f27ce39.png?_wi=1"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us"
|
||||
description="Find us in the heart of Vijayawada."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/modern-stylish-map-interface-with-clean--1774863708276-5f27ce39.png?_wi=2"
|
||||
mediaAnimation="opacity"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Address",
|
||||
description: "123 Brewery Street, Vijayawada, AP.",
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
description: "Mon-Sun: 12:00 PM - 12:00 AM.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/events",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Brunit"
|
||||
/>
|
||||
</div>
|
||||
<NavbarLayoutFloatingInline navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]} brandName="Brunit The Brewery" button={{ text: "Book a Table", href: "/contact" }} />
|
||||
<div className="pt-32 pb-20">
|
||||
<ContactFaq faqs={[{ id: "f1", title: "Reservations?", content: "Call us at +91 9999999999" }]} ctaTitle="Contact Us" ctaDescription="Reach out for event inquiries or booking." ctaButton={{ text: "Email Us" }} ctaIcon={Mail} animationType="slide-up" useInvertedBackground={false} />
|
||||
</div>
|
||||
<FooterLogoEmphasis logoText="Brunit" columns={[{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] }, { items: [{ label: "About", href: "/about" }] }]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,116 +2,20 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="fluid"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Events",
|
||||
id: "/events",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Brunit The Brewery"
|
||||
button={{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Craft Beer Selection"
|
||||
description="Explore our tap list featuring local and international inspirations."
|
||||
products={[
|
||||
{
|
||||
id: "m1",
|
||||
brand: "Beer",
|
||||
name: "Golden Lager",
|
||||
price: "₹350",
|
||||
rating: 5,
|
||||
reviewCount: "200",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/close-up-professional-shot-of-a-craft-be-1774863707395-9eb596db.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
brand: "Beer",
|
||||
name: "Stout Infusion",
|
||||
price: "₹400",
|
||||
rating: 5,
|
||||
reviewCount: "150",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/close-up-professional-shot-of-a-craft-be-1774863707395-9eb596db.png?_wi=3",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/events",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Brunit"
|
||||
/>
|
||||
</div>
|
||||
<NavbarLayoutFloatingInline navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]} brandName="Brunit The Brewery" button={{ text: "Book a Table", href: "/contact" }} />
|
||||
<div className="pt-32 pb-20">
|
||||
<ProductCardTwo animationType="slide-up" textboxLayout="split" gridVariant="three-columns-all-equal-width" title="Our Menu" description="Handcrafted brews and culinary delights." products={[{id: "m1", brand: "Beer", name: "IPA", price: "₹400", rating: 5, reviewCount: "100", imageSrc: "https://images.unsplash.com/photo-1575444758702-4a6b9222b36f"}]} />
|
||||
</div>
|
||||
<FooterLogoEmphasis logoText="Brunit" columns={[{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }, { items: [{ label: "Contact", href: "/contact" }] }]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
154
src/app/page.tsx
154
src/app/page.tsx
@@ -28,28 +28,15 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Events",
|
||||
id: "/events",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "Menu", id: "#menu-preview" },
|
||||
{ name: "Gallery", id: "#gallery" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="Brunit The Brewery"
|
||||
button={{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Book a Table", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,14 +45,8 @@ export default function LandingPage() {
|
||||
title="Vijayawada’s Ultimate Brewery Experience"
|
||||
description="Craft beers, great food, unforgettable nights in the heart of the city."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+919999999999",
|
||||
},
|
||||
{ text: "Book a Table", href: "#contact" },
|
||||
{ text: "View Menu", href: "#menu-preview" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/a-high-end-brewery-interior-in-vijayawad-1774863707447-87c15aa2.png"
|
||||
/>
|
||||
@@ -79,32 +60,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Brew",
|
||||
name: "Signature Gold Lager",
|
||||
price: "₹350",
|
||||
rating: 5,
|
||||
reviewCount: "500",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/close-up-professional-shot-of-a-craft-be-1774863707395-9eb596db.png?_wi=1",
|
||||
},
|
||||
id: "p1", brand: "Brew", name: "Signature Gold Lager", price: "₹350", rating: 5,
|
||||
reviewCount: "500", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/close-up-professional-shot-of-a-craft-be-1774863707395-9eb596db.png?_wi=1"},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Food",
|
||||
name: "Thai Basil Curry",
|
||||
price: "₹450",
|
||||
rating: 5,
|
||||
reviewCount: "320",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/gourmet-thai-curry-dish-on-an-elegant-pl-1774863707576-3645ca76.png?_wi=1",
|
||||
},
|
||||
id: "p2", brand: "Food", name: "Thai Basil Curry", price: "₹450", rating: 5,
|
||||
reviewCount: "320", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/gourmet-thai-curry-dish-on-an-elegant-pl-1774863707576-3645ca76.png?_wi=1"},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Food",
|
||||
name: "Cheese Garlic Bread",
|
||||
price: "₹290",
|
||||
rating: 4,
|
||||
reviewCount: "410",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/gourmet-thai-curry-dish-on-an-elegant-pl-1774863707576-3645ca76.png?_wi=2",
|
||||
},
|
||||
id: "p3", brand: "Food", name: "Cheese Garlic Bread", price: "₹290", rating: 4,
|
||||
reviewCount: "410", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/gourmet-thai-curry-dish-on-an-elegant-pl-1774863707576-3645ca76.png?_wi=2"},
|
||||
]}
|
||||
title="Signature Flavors"
|
||||
description="Discover our handcrafted beers and chef-curated culinary delights."
|
||||
@@ -117,21 +80,9 @@ export default function LandingPage() {
|
||||
title="Our Vibe"
|
||||
description="From golden brews to electric nights, experience Brunit."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "a1",
|
||||
title: "Atmosphere",
|
||||
content: "Modern industrial design with live music sets.",
|
||||
},
|
||||
{
|
||||
id: "a2",
|
||||
title: "Fresh Brews",
|
||||
content: "Brewed in-house using the finest ingredients.",
|
||||
},
|
||||
{
|
||||
id: "a3",
|
||||
title: "Events",
|
||||
content: "Perfect venue for any gathering.",
|
||||
},
|
||||
{ id: "a1", title: "Atmosphere", content: "Modern industrial design with live music sets." },
|
||||
{ id: "a2", title: "Fresh Brews", content: "Brewed in-house using the finest ingredients." },
|
||||
{ id: "a3", title: "Events", content: "Perfect venue for any gathering." },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/crowd-enjoying-live-music-in-a-trendy-br-1774863709101-2d931a60.png?_wi=1"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -145,40 +96,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Arjun Rao",
|
||||
role: "Food Blogger",
|
||||
testimonial: "The best brewery in town! Ambience is 10/10.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/young-professional-smiling-at-a-table-1774863707601-3296fdce.png?_wi=1",
|
||||
},
|
||||
id: "t1", name: "Arjun Rao", role: "Food Blogger", testimonial: "The best brewery in town! Ambience is 10/10.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/young-professional-smiling-at-a-table-1774863707601-3296fdce.png?_wi=1"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sneha Reddy",
|
||||
role: "Pro Photographer",
|
||||
testimonial: "Live music and craft beer is a killer combo.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/group-of-friends-cheering-with-beer-glas-1774863708851-0106d3c4.png",
|
||||
},
|
||||
id: "t2", name: "Sneha Reddy", role: "Pro Photographer", testimonial: "Live music and craft beer is a killer combo.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/group-of-friends-cheering-with-beer-glas-1774863708851-0106d3c4.png"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Vikram Seth",
|
||||
role: "Tech Lead",
|
||||
testimonial: "Corporate party was flawlessly managed here.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/portrait-of-a-man-enjoying-a-meal-1774863708337-def4958e.png",
|
||||
},
|
||||
id: "t3", name: "Vikram Seth", role: "Tech Lead", testimonial: "Corporate party was flawlessly managed here.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/portrait-of-a-man-enjoying-a-meal-1774863708337-def4958e.png"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Priya Das",
|
||||
role: "Local Resident",
|
||||
testimonial: "The Thai Curry is authentic and amazing.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/corporate-team-at-a-restaurant-party-1774863708243-c4a77c90.png",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Amit Shah",
|
||||
role: "Customer",
|
||||
testimonial: "Outstanding service and great variety of craft beer.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/young-professional-smiling-at-a-table-1774863707601-3296fdce.png?_wi=2",
|
||||
},
|
||||
id: "t4", name: "Priya Das", role: "Local Resident", testimonial: "The Thai Curry is authentic and amazing.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bey59tJCVeNm8QfvddVvAT0aaL/corporate-team-at-a-restaurant-party-1774863708243-c4a77c90.png"},
|
||||
]}
|
||||
title="Loved by Locals"
|
||||
description="Join the thousands who made Brunit their favorite hangout."
|
||||
@@ -191,43 +115,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by Vijayawada"
|
||||
description="We are proud to serve our vibrant local community."
|
||||
names={[
|
||||
"Local Business Awards",
|
||||
"Culinary Excellence 2024",
|
||||
"Top Rated Bar",
|
||||
"Community Choice",
|
||||
"Brewers Guild",
|
||||
]}
|
||||
names={["Local Business Awards", "Culinary Excellence 2024", "Top Rated Bar", "Brewers Guild"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/events",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Home", href: "#hero" }, { label: "Menu", href: "#menu-preview" }] },
|
||||
{ items: [{ label: "Contact Us", href: "#contact" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="Brunit"
|
||||
/>
|
||||
@@ -235,4 +131,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user