Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6320b8d735 | |||
| 983ee1666a | |||
| dc87d0348d | |||
| 02f2ddccc1 | |||
| 25d5070c40 | |||
| c63749e561 |
@@ -1,12 +1,11 @@
|
||||
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 "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
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',
|
||||
description: 'Discover Lindenhurst Bagels & Deli. Freshly baked bagels, premium deli sandwiches, and catering. Visit us for breakfast & lunch in Lindenhurst, NY.',
|
||||
openGraph: {
|
||||
"title": "Lindenhurst Bagels & Deli",
|
||||
"description": "Fresh Bagels & Deli Sandwiches, Made Daily",
|
||||
"url": "https://www.lindenhurstbagels.com",
|
||||
"siteName": "Lindenhurst Bagels & Deli",
|
||||
"images": [
|
||||
"title": "Lindenhurst Bagels & Deli", "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",
|
||||
"alt": "A spread of fresh bagels and deli items"
|
||||
"url": "http://img.b2bpic.net/free-photo/delicious-food-standing-line_23-2147678785.jpg", "alt": "A spread of fresh bagels and deli items"
|
||||
}
|
||||
],
|
||||
"type": "website"
|
||||
},
|
||||
twitter: {
|
||||
"card": "summary_large_image",
|
||||
"title": "Lindenhurst Bagels & Deli",
|
||||
"description": "Fresh Bagels & Deli Sandwiches, Made Daily",
|
||||
"images": [
|
||||
"card": "summary_large_image", "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"
|
||||
]
|
||||
},
|
||||
@@ -40,9 +31,12 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree",
|
||||
subsets: ["latin"],
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -53,7 +47,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
variant: "sparkles-gradient"}}
|
||||
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."
|
||||
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"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
mediaAnimation="blur-reveal"
|
||||
buttonAnimation="blur-reveal"
|
||||
tagAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -94,7 +96,7 @@ export default function LandingPage() {
|
||||
icon: Smile,
|
||||
label: "Happy Customers", value: "100K+"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
metricsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -118,12 +120,14 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="More Than Just Bagels"
|
||||
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 id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
@@ -144,12 +148,14 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="Our Delicious Menu"
|
||||
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 id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
@@ -174,6 +180,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
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."
|
||||
tagAnimation="blur-reveal"
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -197,7 +205,9 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
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>
|
||||
|
||||
@@ -211,6 +221,8 @@ export default function LandingPage() {
|
||||
description="We're a beloved local establishment, recognized for our commitment to quality and community support."
|
||||
speed={40}
|
||||
showCard={true}
|
||||
tagAnimation="blur-reveal"
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -218,17 +230,18 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
variant: "sparkles-gradient"}}
|
||||
tag="Visit Us"
|
||||
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"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-bistro-exterior-architecture_23-2149356830.jpg"
|
||||
imageAlt="Exterior of Lindenhurst Bagels & Deli storefront"
|
||||
mediaAnimation="slide-up"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your email for updates"
|
||||
buttonText="Stay Updated"
|
||||
termsText="By clicking Stay Updated you're confirming that you agree to receive promotional emails."
|
||||
tagAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-figtree), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-figtree), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #0c1325;
|
||||
--primary-cta: #0798ff;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #0c1325;
|
||||
--accent: #93c7ff;
|
||||
--background-accent: #a8cde8;
|
||||
--background: #0f1715;
|
||||
--card: #1e2c28;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #3cb371;
|
||||
--primary-cta-text: #0f1715;
|
||||
--secondary-cta: #ffd700;
|
||||
--secondary-cta-text: #0f1715;
|
||||
--accent: #daa520;
|
||||
--background-accent: #2e403a;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user