Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a66c6c16c | |||
| 45ab1f7bde | |||
| c41bc25c70 | |||
| ed44d6c8af | |||
| 6c69ec1589 | |||
| dd8546b57d | |||
| 921b0e0f9a | |||
| 6c2d85dee2 |
@@ -9,9 +9,12 @@ import FeatureHoverPattern from '@/components/sections/feature/featureHoverPatte
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Award, Clock, Crown, DollarSign, Flame, MapPin, MessageSquare, Navigation, Smile, Sparkles, Star, Users } from 'lucide-react';
|
||||
import { Award, Clock, Crown, DollarSign, Flame, MapPin, MessageSquare, Navigation, Smile, Sparkles, Star, Users, Phone } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const phoneNumber = "04221-6866062";
|
||||
const phoneNumberFormatted = "042216866062";
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -34,7 +37,7 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Hours", id: "location" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "tel:04221-6866062" }}
|
||||
button={{ text: "📞 Call Now", href: `tel:${phoneNumberFormatted}` }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -42,10 +45,10 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="THE CLUCKY'S"
|
||||
description="Delmenhorst's Best Fried Chicken. Freshly prepared, crispy on the outside, juicy inside. Rated 4.9★ by 61 local customers."
|
||||
description="Delmenhorst's Best Fried Chicken. Freshly prepared, crispy on the outside, juicy inside. Rated 4.9★ by 61 local customers. Call us: 📞 042216866062"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "📞 Call Now", href: "tel:04221-6866062" },
|
||||
{ text: "📞 Call Now", href: `tel:${phoneNumberFormatted}` },
|
||||
{ text: "See Menu", href: "#food" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -60,7 +63,7 @@ export default function LandingPage() {
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Local Delmenhorst"
|
||||
description="Join hundreds of satisfied customers who love The Clucky's. See what they have to say about our food and service."
|
||||
description="Join hundreds of satisfied customers who love The Clucky's. See what they have to say about our food and service. Call us at 📞 042216866062"
|
||||
tag="Customer Reviews"
|
||||
tagIcon={Star}
|
||||
names={[
|
||||
@@ -80,7 +83,7 @@ export default function LandingPage() {
|
||||
<div id="food" data-section="food">
|
||||
<ProductCardOne
|
||||
title="Our Signature Menu"
|
||||
description="Fresh, made-to-order chicken and sides that make our customers come back."
|
||||
description="Fresh, made-to-order chicken and sides that make our customers come back. Order now: 📞 042216866062"
|
||||
tag="Specialty Items"
|
||||
tagIcon={Flame}
|
||||
tagAnimation="slide-up"
|
||||
@@ -109,7 +112,7 @@ export default function LandingPage() {
|
||||
<div id="why" data-section="why">
|
||||
<FeatureHoverPattern
|
||||
title="Why People Love The Clucky's"
|
||||
description="Premium quality, friendly service, and fair prices. Hover to discover what makes us special."
|
||||
description="Premium quality, friendly service, and fair prices. Hover to discover what makes us special. Contact us: 📞 042216866062"
|
||||
tag="Local Favorite"
|
||||
tagIcon={Award}
|
||||
features={[
|
||||
@@ -134,8 +137,8 @@ export default function LandingPage() {
|
||||
title: "Clean Restaurant", description: "Immaculate dining environment where cleanliness is our top priority always."
|
||||
},
|
||||
{
|
||||
icon: Smile,
|
||||
title: "Local Pride", description: "A Delmenhorst institution. Part of our community since day one. Join our family."
|
||||
icon: Phone,
|
||||
title: "Easy to Order", description: "Quick and convenient. Just call 📞 042216866062 to place your order today."
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -151,7 +154,7 @@ export default function LandingPage() {
|
||||
tagIcon={Navigation}
|
||||
title="Easy to Find in Delmenhorst"
|
||||
description="Bahnhofstraße 30"
|
||||
subdescription="27749 Delmenhorst, Germany"
|
||||
subdescription="27749 Delmenhorst, Germany | Call: 📞 042216866062"
|
||||
icon={MapPin}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/germany-map-infographic-flat-design_23-2148706074.jpg"
|
||||
imageAlt="Restaurant location on map"
|
||||
@@ -165,12 +168,12 @@ export default function LandingPage() {
|
||||
tag="Ready to Eat?"
|
||||
tagIcon={Clock}
|
||||
title="Hungry? Call Now."
|
||||
description="We prepare everything fresh. Open Thursday-Sunday from 12:00. Call for dine-in reservations or quick orders."
|
||||
description="We prepare everything fresh. Open Thursday-Sunday from 12:00. Call 📞 042216866062 for dine-in reservations or quick orders."
|
||||
background={{ variant: "downward-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
tagAnimation="slide-up"
|
||||
inputPlaceholder="Your phone number"
|
||||
buttonText="📍 Get Directions"
|
||||
buttonText="📞 Call: 042216866062"
|
||||
onSubmit={() => console.log('contact submitted')}
|
||||
/>
|
||||
</div>
|
||||
@@ -179,14 +182,14 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Quick Contact"
|
||||
tagIcon={MessageSquare}
|
||||
title="Send Us a Message"
|
||||
description="Have questions or want to place an order? Fill in your details below and we will get back to you soon."
|
||||
title="Send Us a Message or Call"
|
||||
description="Have questions or want to place an order? Call us at 📞 042216866062 or fill in your details below and we will get back to you soon."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
tagAnimation="slide-up"
|
||||
inputPlaceholder="Your email or phone"
|
||||
buttonText="Send Request"
|
||||
termsText="We will respond during our opening hours (Thursday-Sunday, 12:00+). We respect your privacy."
|
||||
termsText="We will respond during our opening hours (Thursday-Sunday, 12:00+). We respect your privacy. Call us anytime at 📞 042216866062"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -196,7 +199,7 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "📞 Call Now", href: "tel:04221-6866062" },
|
||||
{ label: "📞 Call Now: 042216866062", href: `tel:${phoneNumberFormatted}` },
|
||||
{ label: "📍 Get Directions", href: "https://maps.google.com/?q=Bahnhofstraße+30,+27749+Delmenhorst" },
|
||||
{ label: "🕐 Hours: Thu-Sun 12:00+", href: "#" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user