Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 73bb43f9f9 | |||
| e5c2c57c21 | |||
| 8c9565b571 | |||
| 1166660a5e | |||
| 45752eec65 | |||
| 9179d5fbcd | |||
| fbe28a9102 | |||
| 1f0ed876b4 |
@@ -1,59 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Front Street Café | International & Indian Food in Port Jervis, NY",
|
title: "Front Street Café - International Cuisine & Indian Food Port Jervis NY", description: "Front Street Café serves authentic international cuisine with Indian influence in Port Jervis, NY. Affordable, homemade, welcoming community dining."};
|
||||||
description: "Discover authentic international cuisine with Indian influence at Front Street Café in Port Jervis. Affordable dining ($10-20), 4.5-star rated, friendly staff. Dine-in & takeout available.",
|
|
||||||
keywords: "restaurant Port Jervis, Indian food Port Jervis, international cuisine, affordable dining, Chicken Tikka Masala, local restaurant",
|
|
||||||
metadataBase: new URL("https://frontstreetcafe.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://frontstreetcafe.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Front Street Café - International Flavors in Port Jervis",
|
|
||||||
description: "Experience warm, welcoming international cuisine at Front Street Café. Authentic dishes, friendly service, and community spirit.",
|
|
||||||
siteName: "Front Street Café",
|
|
||||||
type: "website",
|
|
||||||
url: "https://frontstreetcafe.com",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg",
|
|
||||||
alt: "Signature Chicken Tikka Masala at Front Street Café",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Front Street Café - International & Indian Cuisine",
|
|
||||||
description: "Discover authentic international flavors in a warm, welcoming atmosphere. 4.5-star rated local favorite.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body className={`${montserrat.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1379,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import Link from "next/link";
|
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
||||||
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
import { ChefHat, Globe, Users, Smile } from "lucide-react";
|
import { Flame, ChefHat, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function MenuPage() {
|
export default function MenuPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -51,15 +50,15 @@ export default function MenuPage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="icon-arrow"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="compact"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="grid"
|
background="aurora"
|
||||||
cardStyle="subtle-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
@@ -67,65 +66,52 @@ export default function MenuPage() {
|
|||||||
brandName="Front Street Café"
|
brandName="Front Street Café"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Order Takeout",
|
text: "Order Takeout", href: "/contact"}}
|
||||||
href: "/contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="menu-description" data-section="menu-description">
|
<div id="menu-hero" data-section="menu-hero">
|
||||||
<SplitAbout
|
<HeroCentered
|
||||||
tag="Our Collection"
|
title="Our Culinary Journey"
|
||||||
tagAnimation="slide-up"
|
description="Explore the diverse flavors of our international menu, where every dish is crafted with passion and authenticity. From traditional Indian curries to beloved global favorites, discover why Front Street Café is Port Jervis's destination for exceptional dining."
|
||||||
title="Explore Our Complete Menu"
|
background={{ variant: "sparkles-gradient" }}
|
||||||
description="From traditional Indian curries to international favorites, discover the full range of dishes that have made Front Street Café a beloved community gathering place. Every item on our menu is crafted with authentic recipes and quality ingredients."
|
avatars={[
|
||||||
bulletPoints={[
|
{ src: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg", alt: "Signature Chicken Tikka Masala" },
|
||||||
{ title: "Indian Classics", description: "Traditional curries, breads, and rice dishes prepared with authentic spices and techniques.", icon: ChefHat },
|
{ src: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg", alt: "Vegetable Korma" },
|
||||||
{ title: "International Dishes", description: "Carefully selected favorites from cuisines around the world that complement our core offerings.", icon: Globe },
|
{ src: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg", alt: "Crispy Samosas" },
|
||||||
{ title: "Vegetarian Options", description: "A variety of plant-based dishes that showcase the versatility of Indian and international cooking.", icon: Users },
|
|
||||||
{ title: "Daily Specials", description: "Seasonal offerings and chef-inspired creations that keep our menu fresh and exciting.", icon: Smile },
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=5"
|
avatarText="Menu Favorites"
|
||||||
imageAlt="Our signature dishes at Front Street Café"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
imagePosition="right"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Full Menu PDF", href: "#" },
|
{ text: "Order Takeout", href: "/contact" },
|
||||||
{ text: "Order Online", href: "/contact" },
|
{ text: "Back to Home", href: "/" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
ariaLabel="Front Street Café menu page hero section"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="menu-highlights" data-section="menu-highlights">
|
<div id="appetizers" data-section="appetizers">
|
||||||
<FeatureCardNine
|
<FeatureCardNine
|
||||||
title="Signature Menu Highlights"
|
title="Appetizers & Starters"
|
||||||
description="These beloved dishes represent the heart of our culinary philosophy—authentic preparation, quality ingredients, and genuine care in every plate"
|
description="Begin your culinary journey with our expertly crafted appetizers that showcase bold flavors and authentic techniques from around the world."
|
||||||
tag="Chef Favorites"
|
tag="Small Bites"
|
||||||
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Signature Chicken Tikka Masala",
|
title: "Crispy Samosas", description: "Golden-fried pastries filled with spiced potatoes and peas, served with tangy tamarind and cooling mint chutneys. A beloved Indian classic.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=1" },
|
||||||
description: "Tender chicken pieces in a rich, creamy tomato-based sauce with aromatic spices. A beloved classic that keeps guests coming back for more.",
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=2" },
|
||||||
phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=6" },
|
|
||||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=7" },
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Vegetable Korma",
|
title: "Paneer Tikka", description: "Cubes of cottage cheese marinated in yogurt and spices, grilled to perfection. Creamy inside, charred on the outside—a vegetarian favorite.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=1" },
|
||||||
description: "A mild and fragrant curry featuring fresh seasonal vegetables in a creamy coconut sauce. Perfect for vegetarians and those seeking comfort in a bowl.",
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=2" },
|
||||||
phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=5" },
|
|
||||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=6" },
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Crispy Samosas",
|
title: "Chicken Seekh Kebab", description: "Tender minced chicken seasoned with aromatic spices, shaped onto skewers, and grilled until smoky and succulent. Served with fresh lime and onions.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=1" },
|
||||||
description: "Golden-fried pastries filled with spiced potatoes and peas, served with tangy tamarind and cooling mint chutneys. The perfect appetizer or snack.",
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=2" },
|
||||||
phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=5" },
|
|
||||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=6" },
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
showStepNumbers={true}
|
showStepNumbers={true}
|
||||||
@@ -139,27 +125,65 @@ export default function MenuPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="menu-order" data-section="menu-order">
|
<div id="curries" data-section="curries">
|
||||||
<ContactSplitForm
|
<FeatureCardNine
|
||||||
title="Place Your Order"
|
title="Signature Curries & Mains"
|
||||||
description="Ready to enjoy our delicious food? Order now for dine-in, takeout, or delivery. Our friendly staff is ready to help."
|
description="Our heart and soul—slow-cooked, aromatic curries bursting with authentic spices and comforting flavors that transport you around the world."
|
||||||
inputs={[
|
tag="Main Courses"
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
tagIcon={Flame}
|
||||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
tagAnimation="slide-up"
|
||||||
{ name: "phone", type: "tel", placeholder: "(845) 858-8858", required: false },
|
features={[
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Chicken Tikka Masala", description: "The classic that defines our kitchen. Tender chicken tikka pieces in a rich, creamy tomato sauce with aromatic spices. A beloved favorite.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=3" },
|
||||||
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=4" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Vegetable Korma", description: "A mild and fragrant curry featuring fresh seasonal vegetables in a creamy coconut sauce with subtle spices. Perfect for all tastes and vegetarian guests.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=3" },
|
||||||
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg?_wi=4" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Lamb Rogan Josh", description: "Slow-cooked tender lamb in a aromatic tomato-based sauce with warming spices. Complex, deep flavors that develop as you savor each bite.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=3" },
|
||||||
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/delicious-pakistani-food-with-sauce_23-2148825165.jpg?_wi=4" },
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
showStepNumbers={true}
|
||||||
name: "message",
|
animationType="slide-up"
|
||||||
placeholder: "Describe your order or ask about menu items...",
|
textboxLayout="default"
|
||||||
rows: 5,
|
|
||||||
required: true,
|
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/female-cook-kitchen-cafe_1303-26161.jpg?_wi=1"
|
buttons={[
|
||||||
imageAlt="Professional food preparation at Front Street Café"
|
{ text: "Order Now", href: "/contact" },
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about-menu" data-section="about-menu">
|
||||||
|
<SplitAbout
|
||||||
|
tag="Our Commitment"
|
||||||
|
tagIcon={ChefHat}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
title="Quality & Authenticity in Every Dish"
|
||||||
|
description="At Front Street Café, we believe that great food starts with great ingredients and time-honored techniques. Every dish on our menu is prepared fresh to order, with authentic recipes and a passion for excellence."
|
||||||
|
bulletPoints={[
|
||||||
|
{ title: "Fresh Ingredients", description: "We source the finest ingredients available, from specialty spices to fresh produce, ensuring every bite is vibrant and flavorful.", icon: ChefHat },
|
||||||
|
{ title: "Authentic Recipes", description: "Our culinary team honors traditional cooking methods and flavor profiles from India, South Asia, and beyond.", icon: Flame },
|
||||||
|
{ title: "Made to Order", description: "Nothing is pre-prepared. Every dish is cooked fresh when you order it, ensuring peak flavor and quality.", icon: Sparkles },
|
||||||
|
{ title: "Dietary Accommodations", description: "Whether you're vegetarian, vegan, or have allergies, our staff will help you find the perfect dish that suits your needs.", icon: ChefHat },
|
||||||
|
]}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg?_wi=2"
|
||||||
|
imageAlt="Our commitment to quality and authentic cuisine at Front Street Café"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
imagePosition="left"
|
||||||
buttonText="Submit Order"
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Call to Order", href: "tel:(845)858-8858" },
|
||||||
|
{ text: "Special Requests", href: "/contact" },
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -171,4 +195,4 @@ export default function MenuPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
|||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
import { Star, Globe, DollarSign, Heart, ChefHat, Users, Smile, TrendingUp } from "lucide-react";
|
import { Star, Globe, DollarSign, Heart, ChefHat, Users, Smile, TrendingUp, Flame, Sparkles, Award } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -54,15 +54,15 @@ export default function HomePage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="icon-arrow"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="compact"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="circleGradient"
|
background="aurora"
|
||||||
cardStyle="subtle-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
@@ -78,7 +78,7 @@ export default function HomePage() {
|
|||||||
<HeroCentered
|
<HeroCentered
|
||||||
title="International Flavors. Homemade Comfort."
|
title="International Flavors. Homemade Comfort."
|
||||||
description="Discover authentic international cuisine with a strong Indian influence at Front Street Café. Our eclectic menu celebrates culinary traditions from around the world, prepared with care and served by our friendly staff. Join Port Jervis's favorite dining community."
|
description="Discover authentic international cuisine with a strong Indian influence at Front Street Café. Our eclectic menu celebrates culinary traditions from around the world, prepared with care and served by our friendly staff. Join Port Jervis's favorite dining community."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg", alt: "Chicken Tikka Masala" },
|
{ src: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg", alt: "Chicken Tikka Masala" },
|
||||||
{ src: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg", alt: "Vegetable Korma" },
|
{ src: "http://img.b2bpic.net/free-photo/front-view-pakistan-food-arrangement_23-2148821548.jpg", alt: "Vegetable Korma" },
|
||||||
@@ -99,6 +99,7 @@ export default function HomePage() {
|
|||||||
title="Why Choose Front Street Café"
|
title="Why Choose Front Street Café"
|
||||||
description="Experience authentic international flavors with local warmth and affordability"
|
description="Experience authentic international flavors with local warmth and affordability"
|
||||||
tag="Our Highlights"
|
tag="Our Highlights"
|
||||||
|
tagIcon={Award}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "1", value: "4.5", title: "Stars", description: "Rated local favorite with 269 positive reviews", icon: Star },
|
{ id: "1", value: "4.5", title: "Stars", description: "Rated local favorite with 269 positive reviews", icon: Star },
|
||||||
@@ -106,7 +107,7 @@ export default function HomePage() {
|
|||||||
{ id: "3", value: "$10-20", title: "Per Person", description: "Affordable dining without compromising quality", icon: DollarSign },
|
{ id: "3", value: "$10-20", title: "Per Person", description: "Affordable dining without compromising quality", icon: DollarSign },
|
||||||
{ id: "4", value: "100%", title: "Friendly", description: "Welcoming staff dedicated to your experience", icon: Heart },
|
{ id: "4", value: "100%", title: "Friendly", description: "Welcoming staff dedicated to your experience", icon: Heart },
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="bento-grid"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -116,6 +117,7 @@ export default function HomePage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<SplitAbout
|
<SplitAbout
|
||||||
tag="Our Story"
|
tag="Our Story"
|
||||||
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="A Community Gathering Place"
|
title="A Community Gathering Place"
|
||||||
description="Front Street Café has become Port Jervis's beloved destination for authentic international cuisine and genuine hospitality. Founded on the principle that great food brings people together, we've crafted a warm, welcoming space where every guest feels at home."
|
description="Front Street Café has become Port Jervis's beloved destination for authentic international cuisine and genuine hospitality. Founded on the principle that great food brings people together, we've crafted a warm, welcoming space where every guest feels at home."
|
||||||
@@ -125,7 +127,7 @@ export default function HomePage() {
|
|||||||
{ title: "Community First", description: "We're proud to be part of Port Jervis. Supporting local and building lasting relationships with our neighbors is at our core.", icon: Users },
|
{ title: "Community First", description: "We're proud to be part of Port Jervis. Supporting local and building lasting relationships with our neighbors is at our core.", icon: Users },
|
||||||
{ title: "Friendly Service", description: "Our staff is passionate about making your dining experience memorable and welcoming every time you visit.", icon: Smile },
|
{ title: "Friendly Service", description: "Our staff is passionate about making your dining experience memorable and welcoming every time you visit.", icon: Smile },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg?_wi=1"
|
||||||
imageAlt="Warm and inviting restaurant interior at Front Street Café"
|
imageAlt="Warm and inviting restaurant interior at Front Street Café"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
@@ -144,6 +146,7 @@ export default function HomePage() {
|
|||||||
title="Explore Our Menu"
|
title="Explore Our Menu"
|
||||||
description="From traditional Indian curries to international favorites, every dish tells a story of authentic flavor and home-style preparation"
|
description="From traditional Indian curries to international favorites, every dish tells a story of authentic flavor and home-style preparation"
|
||||||
tag="Menu Highlights"
|
tag="Menu Highlights"
|
||||||
|
tagIcon={Flame}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
@@ -179,6 +182,7 @@ export default function HomePage() {
|
|||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
description="Real stories from real customers who've experienced the Front Street Café difference"
|
description="Real stories from real customers who've experienced the Front Street Café difference"
|
||||||
tag="Customer Love"
|
tag="Customer Love"
|
||||||
|
tagIcon={Heart}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -204,6 +208,7 @@ export default function HomePage() {
|
|||||||
title="Featured & Trusted By"
|
title="Featured & Trusted By"
|
||||||
description="Front Street Café is recognized and recommended by leading platforms and local guides"
|
description="Front Street Café is recognized and recommended by leading platforms and local guides"
|
||||||
tag="Media & Recognition"
|
tag="Media & Recognition"
|
||||||
|
tagIcon={Award}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -223,4 +228,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user