6 Commits

Author SHA1 Message Date
6320b8d735 Update src/app/page.tsx 2026-06-08 00:11:28 +00:00
983ee1666a Update src/app/styles/variables.css 2026-06-08 00:10:45 +00:00
dc87d0348d Update src/app/styles/base.css 2026-06-08 00:10:45 +00:00
02f2ddccc1 Update src/app/page.tsx 2026-06-08 00:10:44 +00:00
25d5070c40 Update src/app/layout.tsx 2026-06-08 00:10:44 +00:00
c63749e561 Merge version_1 into main
Merge version_1 into main
2026-06-08 00:07:07 +00:00
4 changed files with 43 additions and 36 deletions

View File

@@ -1,12 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import "@/lib/gsap-setup"; import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Figtree } from "next/font/google";
@@ -14,23 +13,15 @@ export const metadata: Metadata = {
title: 'Lindenhurst Bagels & Deli | Fresh Bagels & Sandwiches', title: 'Lindenhurst Bagels & Deli | Fresh Bagels & Sandwiches',
description: 'Discover Lindenhurst Bagels & Deli. Freshly baked bagels, premium deli sandwiches, and catering. Visit us for breakfast & lunch in Lindenhurst, NY.', description: 'Discover Lindenhurst Bagels & Deli. Freshly baked bagels, premium deli sandwiches, and catering. Visit us for breakfast & lunch in Lindenhurst, NY.',
openGraph: { openGraph: {
"title": "Lindenhurst Bagels & Deli", "title": "Lindenhurst Bagels & Deli", "description": "Fresh Bagels & Deli Sandwiches, Made Daily", "url": "https://www.lindenhurstbagels.com", "siteName": "Lindenhurst Bagels & Deli", "images": [
"description": "Fresh Bagels & Deli Sandwiches, Made Daily",
"url": "https://www.lindenhurstbagels.com",
"siteName": "Lindenhurst Bagels & Deli",
"images": [
{ {
"url": "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg", "url": "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg", "alt": "A spread of fresh bagels and deli items"
"alt": "A spread of fresh bagels and deli items"
} }
], ],
"type": "website" "type": "website"
}, },
twitter: { twitter: {
"card": "summary_large_image", "card": "summary_large_image", "title": "Lindenhurst Bagels & Deli", "description": "Fresh Bagels & Deli Sandwiches, Made Daily", "images": [
"title": "Lindenhurst Bagels & Deli",
"description": "Fresh Bagels & Deli Sandwiches, Made Daily",
"images": [
"http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg" "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg"
] ]
}, },
@@ -40,9 +31,12 @@ export const metadata: Metadata = {
}, },
}; };
const figtree = Figtree({ const dmSans = DM_Sans({
variable: "--font-figtree", variable: "--font-dm-sans", subsets: ["latin"],
subsets: ["latin"], });
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -53,7 +47,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${figtree.variable} antialiased`}> <body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
<div id="home" data-section="home"> <div id="home" data-section="home">
<HeroBillboardGallery <HeroBillboardGallery
background={{ background={{
variant: "plain"}} variant: "sparkles-gradient"}}
title="Fresh Bagels & Deli Sandwiches, Made Daily" title="Fresh Bagels & Deli Sandwiches, Made Daily"
description="Award-quality bagels, premium deli meats, and classic sandwiches served fresh. Visit us on Lindenhurst Avenue for breakfast, lunch, or catering." description="Award-quality bagels, premium deli meats, and classic sandwiches served fresh. Visit us on Lindenhurst Avenue for breakfast, lunch, or catering."
buttons={[ buttons={[
@@ -75,7 +75,9 @@ export default function LandingPage() {
{ {
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379534.jpg", imageAlt: "An inviting display of various types of freshly baked bagels"}, imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379534.jpg", imageAlt: "An inviting display of various types of freshly baked bagels"},
]} ]}
mediaAnimation="slide-up" mediaAnimation="blur-reveal"
buttonAnimation="blur-reveal"
tagAnimation="blur-reveal"
/> />
</div> </div>
@@ -94,7 +96,7 @@ export default function LandingPage() {
icon: Smile, icon: Smile,
label: "Happy Customers", value: "100K+"}, label: "Happy Customers", value: "100K+"},
]} ]}
metricsAnimation="slide-up" metricsAnimation="blur-reveal"
/> />
</div> </div>
@@ -118,12 +120,14 @@ export default function LandingPage() {
]} ]}
title="More Than Just Bagels" title="More Than Just Bagels"
description="From hearty breakfast options to delicious lunch specials and full-service catering, we have something for everyone." description="From hearty breakfast options to delicious lunch specials and full-service catering, we have something for everyone."
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
/> />
</div> </div>
<div id="menu" data-section="menu"> <div id="menu" data-section="menu">
<ProductCardThree <ProductCardThree
animationType="slide-up" animationType="blur-reveal"
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={false} useInvertedBackground={false}
@@ -144,12 +148,14 @@ export default function LandingPage() {
]} ]}
title="Our Delicious Menu" title="Our Delicious Menu"
description="Explore our wide selection of freshly baked bagels, gourmet cream cheeses, signature deli sandwiches, and hot coffee." description="Explore our wide selection of freshly baked bagels, gourmet cream cheeses, signature deli sandwiches, and hot coffee."
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardOne <TestimonialCardOne
animationType="slide-up" animationType="depth-3d"
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={false} useInvertedBackground={false}
@@ -174,6 +180,8 @@ export default function LandingPage() {
]} ]}
title="What Our Customers Say" title="What Our Customers Say"
description="Hear from our satisfied customers about their favorite bagels, sandwiches, and the friendly service that keeps them coming back." description="Hear from our satisfied customers about their favorite bagels, sandwiches, and the friendly service that keeps them coming back."
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
/> />
</div> </div>
@@ -197,7 +205,9 @@ export default function LandingPage() {
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Find answers to common questions about our menu, ingredients, ordering, and special requests." description="Find answers to common questions about our menu, ingredients, ordering, and special requests."
faqsAnimation="slide-up" faqsAnimation="blur-reveal"
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
/> />
</div> </div>
@@ -211,6 +221,8 @@ export default function LandingPage() {
description="We're a beloved local establishment, recognized for our commitment to quality and community support." description="We're a beloved local establishment, recognized for our commitment to quality and community support."
speed={40} speed={40}
showCard={true} showCard={true}
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
/> />
</div> </div>
@@ -218,17 +230,18 @@ export default function LandingPage() {
<ContactSplit <ContactSplit
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "radial-gradient"}} variant: "sparkles-gradient"}}
tag="Visit Us" tag="Visit Us"
title="Find Us in Lindenhurst" title="Find Us in Lindenhurst"
description="Stop by for breakfast or lunch, or call ahead for catering. We're open daily and ready to serve you!\n\n**Address:** 123 Lindenhurst Ave, Lindenhurst, NY 11757\n**Phone:** (631) 555-1234\n**Hours:** Mon-Sun: 6 AM - 3 PM" description="Stop by for breakfast or lunch, or call ahead for catering. We're open daily and ready to serve you!\n\n**Address:** 123 Lindenhurst Ave, Lindenhurst, NY 11757\n**Phone:** (631) 555-1234\n**Hours:** Mon-Sun: 6 AM - 3 PM"
imageSrc="http://img.b2bpic.net/free-photo/low-angle-bistro-exterior-architecture_23-2149356830.jpg" imageSrc="http://img.b2bpic.net/free-photo/low-angle-bistro-exterior-architecture_23-2149356830.jpg"
imageAlt="Exterior of Lindenhurst Bagels & Deli storefront" imageAlt="Exterior of Lindenhurst Bagels & Deli storefront"
mediaAnimation="slide-up" mediaAnimation="blur-reveal"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="Your email for updates" inputPlaceholder="Your email for updates"
buttonText="Stay Updated" buttonText="Stay Updated"
termsText="By clicking Stay Updated you're confirming that you agree to receive promotional emails." termsText="By clicking Stay Updated you're confirming that you agree to receive promotional emails."
tagAnimation="blur-reveal"
/> />
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-figtree), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-figtree), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f7f6f7; --background: #0f1715;
--card: #ffffff; --card: #1e2c28;
--foreground: #0c1325; --foreground: #ffffff;
--primary-cta: #0798ff; --primary-cta: #3cb371;
--primary-cta-text: #f7f6f7; --primary-cta-text: #0f1715;
--secondary-cta: #ffffff; --secondary-cta: #ffd700;
--secondary-cta-text: #0c1325; --secondary-cta-text: #0f1715;
--accent: #93c7ff; --accent: #daa520;
--background-accent: #a8cde8; --background-accent: #2e403a;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);