Update src/app/page.tsx

This commit is contained in:
2026-03-10 16:00:31 +00:00
parent 41dd212e91
commit c873ff1dcb

View File

@@ -11,6 +11,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Scissors, Sparkles, Award, Heart, Lightbulb, Users, Star, HelpCircle, Phone } from 'lucide-react';
import Link from 'next/link';
export default function LandingPage() {
return (
@@ -30,7 +31,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
brandName="Tala Barbershop"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
@@ -176,8 +177,8 @@ export default function LandingPage() {
<div id="faq" data-section="faq">
<FaqDouble
title="Häufig gestellte Fragen"
description="Finden Sie Antworten auf häufig gestellte Fragen zu unseren Dienstleistungen, Preisen und Terminplanung."
title="Frequently Asked Questions"
description="Find answers to commonly asked questions about our services, pricing, and booking."
tag="FAQ"
tagIcon={HelpCircle}
textboxLayout="default"
@@ -186,28 +187,28 @@ export default function LandingPage() {
animationType="smooth"
faqs={[
{
id: "1", title: "Wie buche ich einen Termin?", content: "Sie können direkt über unser Kontaktformular buchen oder uns während der Geschäftszeiten anrufen. Wir akzeptieren auch Spontanbesuche, wenn Barbiere verfügbar sind. Online-Buchungen sichern Ihnen Ihren bevorzugten Zeitslot."
id: "1", title: "How do I book an appointment?", content: "You can book directly through our contact form or call us during business hours. We also accept walk-ins when barbers are available. Online bookings secure your preferred time slot."
},
{
id: "2", title: "Was ist Ihre Stornierungsrichtlinie?", content: "Wir benötigen 24 Stunden Kündigungsfrist. Stornierungen mit kürzerer Frist können mit einer kleinen Gebühr verbunden sein. Nicht eingehaltene Termine werden zum vollen Preis berechnet."
id: "2", title: "What is your cancellation policy?", content: "We require 24 hours notice for cancellations. Cancellations with shorter notice may incur a small fee. No-shows will be charged at full price."
},
{
id: "3", title: "Bieten Sie Geschenkgutscheine an?", content: "Ja! Wir bieten Geschenkgutscheine in Stückelungen von 25, 50 und 100 US-Dollar an. Sie sind perfekt für Trauzeugen, Vatertag, Geburtstage oder jeden Anlass. Kaufen Sie im Geschäft oder kontaktieren Sie uns für Details."
id: "3", title: "Do you offer gift certificates?", content: "Yes! We offer gift certificates in denominations of $25, $50, and $100. They're perfect for groomsmen, Father's Day, birthdays, or any occasion. Purchase in-store or contact us for details."
},
{
id: "4", title: "Welche Produkte verwenden Sie?", content: "Wir verwenden hochwertige Pflegeprodukte, darunter hochwertige Schneidemaschinen, Rasiermesser und professionelle Aftercare-Produkte. Alle Produkte werden wegen ihrer Qualität und Hautverträglichkeit ausgewählt."
id: "4", title: "What products do you use?", content: "We use premium grooming products, including high-quality clippers, straight razors, and professional aftercare products. All products are selected for their quality and skin compatibility."
},
{
id: "5", title: "Erstes Mal bei Tala?", content: "Neukunden erhalten eine kostenlose Beratung zur Besprechung Ihres bevorzugten Stils, Haartyps und Pflegeziele. Unsere Barbiere werden ihren Ansatz an Ihre Bedürfnisse anpassen."
id: "5", title: "First time at Tala?", content: "New clients receive a complimentary consultation to discuss your preferred style, hair type, and grooming goals. Our barbers will tailor their approach to your needs."
},
{
id: "6", title: "Akzeptieren Sie Spontanbesuche?", content: "Spontanbesuche sind willkommen! Die vorherige Buchung garantiert Ihnen einen Platz und verkürzt die Wartezeit. Überprüfen Sie unsere Verfügbarkeit online oder rufen Sie an, um aktuelle Wartezeiten zu bestätigen."
id: "6", title: "Do you accept walk-ins?", content: "Walk-ins are welcome! Prior booking guarantees your spot and reduces wait time. Check our availability online or call to confirm current wait times."
},
{
id: "7", title: "Wie sind Ihre Öffnungszeiten?", content: "Wir sind Montag bis Freitag von 9 bis 19 Uhr, Samstag von 9 bis 18 Uhr und Sonntag von 10 bis 16 Uhr geöffnet. Die Öffnungszeiten an Feiertagen können abweichen schauen Sie auf unserer Website nach Updates."
id: "7", title: "What are your hours?", content: "We're open Monday-Friday 9am-7pm, Saturday 9am-6pm, and Sunday 10am-4pm. Holiday hours may vary — check our website for updates."
},
{
id: "8", title: "Wo ist Ihr Standort?", content: "Tala Barbershop befindet sich in der Hauptstraße 123, Innenstadt. Wir sind mit öffentlichen Verkehrsmitteln leicht erreichbar und haben bequemes Straßenparkplätze."
id: "8", title: "Where is your location?", content: "Tala Barbershop is located at 123 Main Street, Downtown. We're easily accessible by public transit and have convenient street parking."
}
]}
/>
@@ -215,9 +216,9 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
tag="Kontakt"
title="Bereit, Ihren Look zu verändern?"
description="Buchen Sie Ihren nächsten Termin bei Tala Barbershop. Egal, ob es Ihr erster Besuch oder Ihr regelmäßiger Besuch ist, unser Team ist bereit, Ihnen die Premium-Pflegeerfahrung zu bieten, die Sie verdienen. Rufen Sie uns unter (555) 123-4567 an oder besuchen Sie uns in der Hauptstraße 123."
tag="Contact"
title="Ready to transform your look?"
description="Book your next appointment at Tala Barbershop. Whether it's your first visit or you're a regular, our team is ready to deliver the premium grooming experience you deserve. Call us at (555) 123-4567 or visit us at 123 Main Street."
tagIcon={Phone}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
@@ -225,9 +226,9 @@ export default function LandingPage() {
imageAlt="Tala Barbershop Interior"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Geben Sie Ihre E-Mail ein, um zu beginnen"
buttonText="Jetzt buchen"
termsText="Mit der Buchung bei uns bestätigen Sie, dass Sie unsere Terminplanungsrichtlinie und unsere Bedingungen gelesen haben und akzeptieren."
inputPlaceholder="Enter your email to get started"
buttonText="Book Now"
termsText="By booking with us you confirm that you've read and agree to our booking policy and terms."
onSubmit={() => {}}
/>
</div>
@@ -235,27 +236,27 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="Tala Barbershop"
copyrightText="© 2025 Tala Barbershop. Alle Rechte vorbehalten."
copyrightText="© 2025 Tala Barbershop. All rights reserved."
columns={[
{
title: "Dienstleistungen", items: [
{ label: "Haarschnitte", href: "services" },
{ label: "Bartpflege", href: "services" },
{ label: "Rasiermessershaves", href: "services" }
title: "Services", items: [
{ label: "Haircuts", href: "services" },
{ label: "Beard Grooming", href: "services" },
{ label: "Straight Razor Shaves", href: "services" }
]
},
{
title: "Unternehmen", items: [
{ label: "Über uns", href: "about" },
{ label: "Unser Team", href: "team" },
{ label: "Bewertungen", href: "testimonials" }
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Our Team", href: "team" },
{ label: "Reviews", href: "testimonials" }
]
},
{
title: "Rechtliches", items: [
{ label: "Datenschutz", href: "#" },
{ label: "Nutzungsbedingungen", href: "#" },
{ label: "Kontakt", href: "contact" }
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
{ label: "Contact", href: "contact" }
]
}
]}