Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -22,133 +22,46 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "/story",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Reserve",
|
||||
id: "/reserve",
|
||||
},
|
||||
]}
|
||||
brandName="Borgo C"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Story", id: "/story" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Reserve", id: "/reserve" },
|
||||
]}
|
||||
brandName="Borgo C"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Signature Menu"
|
||||
description="Curated selection of our finest dishes."
|
||||
features={[
|
||||
{
|
||||
id: "menu1",
|
||||
title: "Main Courses",
|
||||
author: "Kitchen",
|
||||
description: "Home-style fusion prepared fresh daily.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "menu2",
|
||||
title: "Dessert Bar",
|
||||
author: "Pastry Chef",
|
||||
description: "Legendary rotation of creative treats.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-muffin-wooden-background_23-2148718736.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Signature Menu"
|
||||
description="Curated selection of our finest dishes."
|
||||
features={[
|
||||
{
|
||||
id: "menu1", title: "Main Courses", author: "Kitchen", description: "Home-style fusion prepared fresh daily.", imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg", tags: ["Fusion"]
|
||||
},
|
||||
{
|
||||
id: "menu2", title: "Dessert Bar", author: "Pastry Chef", description: "Legendary rotation of creative treats.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-muffin-wooden-background_23-2148718736.jpg", tags: ["Sweet"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Menu"
|
||||
title="See the Full List"
|
||||
description="Discover seasonal specials."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Full Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/story",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Reserve a Table",
|
||||
href: "/reserve",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/events",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Google Maps",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Borgo C"
|
||||
copyrightText="© 2024 Borgo C. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Menu"
|
||||
title="See the Full List"
|
||||
description="Discover seasonal specials."
|
||||
buttons={[{ text: "View Full Menu", href: "/menu" }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -4,10 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function StoryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -22,133 +21,46 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "/story",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Reserve",
|
||||
id: "/reserve",
|
||||
},
|
||||
]}
|
||||
brandName="Borgo C"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Story", id: "/story" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Reserve", id: "/reserve" },
|
||||
]}
|
||||
brandName="Borgo C"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Roots"
|
||||
description="Since 2011 in Lei King Wan."
|
||||
features={[
|
||||
{
|
||||
id: "story1",
|
||||
title: "The Beginning",
|
||||
author: "Borgo C Team",
|
||||
description: "Started as a small local kitchen.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164908.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "story2",
|
||||
title: "Our Philosophy",
|
||||
author: "Founder",
|
||||
description: "Bringing people together through home-style meals.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Roots"
|
||||
description="Since 2011 in Lei King Wan."
|
||||
features={[
|
||||
{
|
||||
id: "story1", title: "The Beginning", author: "Borgo C Team", description: "Started as a small local kitchen.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164908.jpg", tags: ["History"]
|
||||
},
|
||||
{
|
||||
id: "story2", title: "Our Philosophy", author: "Founder", description: "Bringing people together through home-style meals.", imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg", tags: ["Values"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contact"
|
||||
title="Join Our Journey"
|
||||
description="Come visit our space."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now",
|
||||
href: "/reserve",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/story",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Reserve a Table",
|
||||
href: "/reserve",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/events",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Google Maps",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Borgo C"
|
||||
copyrightText="© 2024 Borgo C. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact"
|
||||
title="Join Our Journey"
|
||||
description="Come visit our space."
|
||||
buttons={[{ text: "Book Now", href: "/reserve" }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user