Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a5663a538 | |||
| 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 ReactLenis from "lenis/react";
|
||||
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 InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -29,25 +29,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
]}
|
||||
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."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "View Menu", href: "#menu"},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Contact Us", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-sandwich-wooden-table_23-2148633444.jpg"
|
||||
@@ -78,24 +62,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "A Cozy Spot with ",
|
||||
},
|
||||
type: "text", content: "A Cozy Spot with "},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/laptop-digital-tablet-book-pot-plant-wooden-table-restaurant_23-2147936091.jpg",
|
||||
alt: "Cafe Vibe",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/laptop-digital-tablet-book-pot-plant-wooden-table-restaurant_23-2147936091.jpg", alt: "Cafe Vibe"},
|
||||
{
|
||||
type: "text",
|
||||
content: " Fresh Flavors",
|
||||
},
|
||||
type: "text", content: " Fresh Flavors"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Visit Us", href: "#contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,41 +83,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Artisan Steak Sandwich",
|
||||
price: "$15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-banh-mi-sandwich-wooden-table_123827-31223.jpg",
|
||||
},
|
||||
id: "p4", name: "Artisan Steak Sandwich", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/vietnamese-banh-mi-sandwich-wooden-table_123827-31223.jpg"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Gourmet Deli Combo",
|
||||
price: "$16",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-delicious-photo-crousant_624325-1728.jpg",
|
||||
},
|
||||
id: "p6", name: "Gourmet Deli Combo", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/food-delicious-photo-crousant_624325-1728.jpg"},
|
||||
]}
|
||||
title="Fresh Daily Menu"
|
||||
description="Hand-crafted sandwiches, wraps, and savory delights made with the freshest local ingredients."
|
||||
@@ -157,45 +108,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Trudy Stoddert",
|
||||
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: "t1", name: "Trudy Stoddert", 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",
|
||||
name: "Sarah Miller",
|
||||
role: "Visitor",
|
||||
company: "NYC",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg",
|
||||
},
|
||||
id: "t2", name: "Sarah Miller", role: "Visitor", company: "NYC", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "David Thompson",
|
||||
role: "Regular",
|
||||
company: "Local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-drinking-coffee-spacious-cafeteria_23-2150424026.jpg",
|
||||
},
|
||||
id: "t3", name: "David Thompson", role: "Regular", company: "Local", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-drinking-coffee-spacious-cafeteria_23-2150424026.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Emily Chen",
|
||||
role: "Foodie",
|
||||
company: "Tourist",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-beautiful-gingerbread-walk_169016-24855.jpg",
|
||||
},
|
||||
id: "t4", name: "Emily Chen", 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",
|
||||
name: "Mark Wilson",
|
||||
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",
|
||||
},
|
||||
id: "t5", name: "Mark Wilson", 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"
|
||||
description="We're proud to serve our Lake George community and visitors."
|
||||
@@ -206,34 +132,40 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Visit Us Today"
|
||||
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!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (518) 741-7034",
|
||||
href: "tel:5187417034",
|
||||
},
|
||||
text: "Call (518) 741-7034", href: "tel:5187417034"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<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",
|
||||
}}
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "1439 US-9, Lake George, NY 12845" },
|
||||
{ label: "(518) 741-7034", href: "tel:5187417034" },
|
||||
{ label: "hello@mooseontheloose.cafe", href: "mailto:hello@mooseontheloose.cafe" }
|
||||
]
|
||||
},
|
||||
{
|
||||
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>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user