Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6581fc4b3 | |||
| 945887d0fe |
63
src/app/about/page.tsx
Normal file
63
src/app/about/page.tsx
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="mediumLarge"
|
||||||
|
sizing="large"
|
||||||
|
background="none"
|
||||||
|
cardStyle="gradient-bordered"
|
||||||
|
primaryButtonStyle="double-inset"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleApple
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Menu", id: "/#menu" },
|
||||||
|
{ name: "Reviews", id: "/#reviews" },
|
||||||
|
{ name: "Contact", id: "/#contact" },
|
||||||
|
]}
|
||||||
|
brandName="Moose On The Loose"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<InlineImageSplitTextAbout
|
||||||
|
useInvertedBackground={false}
|
||||||
|
heading={[
|
||||||
|
{ type: "text", content: "Our Story: " },
|
||||||
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/coffee-cup-table-cafe_23-2148171092.jpg", alt: "Our Cafe" },
|
||||||
|
{ type: "text", content: " A Taste of Lake George" },
|
||||||
|
]}
|
||||||
|
buttons={[{ text: "Back to Home", href: "/" }]}
|
||||||
|
/>
|
||||||
|
<div className="container mx-auto px-6 py-20 text-center">
|
||||||
|
<h2 className="text-3xl font-bold mb-6">Cafe Information</h2>
|
||||||
|
<p className="text-xl max-w-2xl mx-auto">
|
||||||
|
Established in the heart of Lake George, we pride ourselves on serving fresh, locally-sourced deli favorites.
|
||||||
|
Our mission is to create a welcoming space where both locals and visitors can enjoy premium coffee and handcrafted meals.
|
||||||
|
From our signature sandwiches to our cozy interior, every detail is designed with you in mind.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FooterLogoReveal
|
||||||
|
logoText="Moose On The Loose Cafe"
|
||||||
|
leftLink={{ text: "Directions", href: "https://maps.google.com/?q=1439+US-9+Lake+George+NY+12845" }}
|
||||||
|
rightLink={{ text: "Contact Us", href: "tel:5187417034" }}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
166
src/app/page.tsx
166
src/app/page.tsx
@@ -3,7 +3,7 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
@@ -29,25 +29,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "Menu", id: "#menu"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Reviews", id: "#reviews"},
|
||||||
id: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "About", id: "#about"},
|
||||||
id: "#reviews",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Moose On The Loose"
|
brandName="Moose On The Loose"
|
||||||
/>
|
/>
|
||||||
@@ -59,13 +47,9 @@ export default function LandingPage() {
|
|||||||
description="Your friendly local deli and cafe in Lake George. Freshly made sandwiches, delicious wraps, and premium coffee served with a smile."
|
description="Your friendly local deli and cafe in Lake George. Freshly made sandwiches, delicious wraps, and premium coffee served with a smile."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Contact Us",
|
text: "Contact Us", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-sandwich-wooden-table_23-2148633444.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/delicious-sandwich-wooden-table_23-2148633444.jpg"
|
||||||
@@ -78,24 +62,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "A Cozy Spot with "},
|
||||||
content: "A Cozy Spot with ",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/laptop-digital-tablet-book-pot-plant-wooden-table-restaurant_23-2147936091.jpg", alt: "Cafe Vibe"},
|
||||||
src: "http://img.b2bpic.net/free-photo/laptop-digital-tablet-book-pot-plant-wooden-table-restaurant_23-2147936091.jpg",
|
|
||||||
alt: "Cafe Vibe",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: " Fresh Flavors"},
|
||||||
content: " Fresh Flavors",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Visit Us",
|
text: "Visit Us", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,41 +83,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Blackberry Bacon Sandwich", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/turkey-sandwich-with-cranberry-sauce-thanksgiving-wooden-table_123827-35061.jpg"},
|
||||||
name: "Blackberry Bacon Sandwich",
|
|
||||||
price: "$12",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/turkey-sandwich-with-cranberry-sauce-thanksgiving-wooden-table_123827-35061.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "French Onion Roast Beef", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/club-sandwich-panini-with-ham-cheese-tomato-herbs-top-view_2829-19925.jpg"},
|
||||||
name: "French Onion Roast Beef",
|
|
||||||
price: "$14",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/club-sandwich-panini-with-ham-cheese-tomato-herbs-top-view_2829-19925.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Chicken Bacon Ranch Wrap", price: "$13", imageSrc: "http://img.b2bpic.net/free-photo/front-view-sandwiches-with-spinach-cucumber-slices_23-2148465188.jpg"},
|
||||||
name: "Chicken Bacon Ranch Wrap",
|
|
||||||
price: "$13",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-sandwiches-with-spinach-cucumber-slices_23-2148465188.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Artisan Steak Sandwich", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-banh-mi-sandwich-wooden-table_123827-31223.jpg"},
|
||||||
name: "Artisan Steak Sandwich",
|
|
||||||
price: "$15",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-banh-mi-sandwich-wooden-table_123827-31223.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Fresh Garden Wrap", price: "$11", imageSrc: "http://img.b2bpic.net/free-photo/food-background-food-concept-with-various-tasty-fresh-ingredients-cooking-italian-food-ingredients-view-from-with-copy-space_1220-1363.jpg"},
|
||||||
name: "Fresh Garden Wrap",
|
|
||||||
price: "$11",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/food-background-food-concept-with-various-tasty-fresh-ingredients-cooking-italian-food-ingredients-view-from-with-copy-space_1220-1363.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Gourmet Deli Combo", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/food-delicious-photo-crousant_624325-1728.jpg"},
|
||||||
name: "Gourmet Deli Combo",
|
|
||||||
price: "$16",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/food-delicious-photo-crousant_624325-1728.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Fresh Daily Menu"
|
title="Fresh Daily Menu"
|
||||||
description="Hand-crafted sandwiches, wraps, and savory delights made with the freshest local ingredients."
|
description="Hand-crafted sandwiches, wraps, and savory delights made with the freshest local ingredients."
|
||||||
@@ -157,45 +108,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Trudy Stoddert", role: "Local Guide", company: "Lake George", rating: 5,
|
||||||
name: "Trudy Stoddert",
|
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg"},
|
||||||
role: "Local Guide",
|
|
||||||
company: "Lake George",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Sarah Miller", role: "Visitor", company: "NYC", rating: 5,
|
||||||
name: "Sarah Miller",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg"},
|
||||||
role: "Visitor",
|
|
||||||
company: "NYC",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "David Thompson", role: "Regular", company: "Local", rating: 5,
|
||||||
name: "David Thompson",
|
imageSrc: "http://img.b2bpic.net/free-photo/person-drinking-coffee-spacious-cafeteria_23-2150424026.jpg"},
|
||||||
role: "Regular",
|
|
||||||
company: "Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/person-drinking-coffee-spacious-cafeteria_23-2150424026.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Emily Chen", role: "Foodie", company: "Tourist", rating: 5,
|
||||||
name: "Emily Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-beautiful-gingerbread-walk_169016-24855.jpg"},
|
||||||
role: "Foodie",
|
|
||||||
company: "Tourist",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-beautiful-gingerbread-walk_169016-24855.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Mark Wilson", role: "Biker", company: "Local", rating: 5,
|
||||||
name: "Mark Wilson",
|
imageSrc: "http://img.b2bpic.net/free-photo/adorable-charming-lady-with-long-hair-wearing-trendy-blouse-sitting-cafeteria-with-great-smile_291650-620.jpg"},
|
||||||
role: "Biker",
|
|
||||||
company: "Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/adorable-charming-lady-with-long-hair-wearing-trendy-blouse-sitting-cafeteria-with-great-smile_291650-620.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Locals Say"
|
title="What Our Locals Say"
|
||||||
description="We're proud to serve our Lake George community and visitors."
|
description="We're proud to serve our Lake George community and visitors."
|
||||||
@@ -206,34 +132,40 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us Today"
|
tag="Visit Us Today"
|
||||||
title="Swing by Moose On The Loose"
|
title="Swing by Moose On The Loose"
|
||||||
description="1439 US-9, Lake George, NY 12845. Open until 5 PM daily. We'd love to serve you some fresh, delicious food!"
|
description="1439 US-9, Lake George, NY 12845. Open until 5 PM daily. We'd love to serve you some fresh, delicious food!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call (518) 741-7034",
|
text: "Call (518) 741-7034", href: "tel:5187417034"},
|
||||||
href: "tel:5187417034",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterSimple
|
||||||
logoText="Moose On The Loose Cafe"
|
columns={[
|
||||||
leftLink={{
|
{
|
||||||
text: "Directions",
|
title: "Contact", items: [
|
||||||
href: "https://maps.google.com/?q=1439+US-9+Lake+George+NY+12845",
|
{ label: "1439 US-9, Lake George, NY 12845" },
|
||||||
}}
|
{ label: "(518) 741-7034", href: "tel:5187417034" },
|
||||||
rightLink={{
|
{ label: "hello@mooseontheloose.cafe", href: "mailto:hello@mooseontheloose.cafe" }
|
||||||
text: "Contact Us",
|
]
|
||||||
href: "tel:5187417034",
|
},
|
||||||
}}
|
{
|
||||||
|
title: "Info", items: [
|
||||||
|
{ label: "Directions", href: "https://maps.google.com/?q=1439+US-9+Lake+George+NY+12845" },
|
||||||
|
{ label: "Menu", href: "#menu" },
|
||||||
|
{ label: "Reviews", href: "#reviews" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2024 Moose On The Loose"
|
||||||
|
bottomRightText="Freshly Crafted Daily"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user