From b474f697cb861a49c1676d2ca8afdd690b105841 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 17:08:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 203 +++++++++-------------------------------------- 1 file changed, 39 insertions(+), 164 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7867c32..f6e2f4b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,12 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import { Facebook, Instagram, Utensils } from "lucide-react"; @@ -31,21 +31,13 @@ export default function LandingPage() { @@ -54,45 +46,22 @@ export default function LandingPage() {
@@ -112,62 +81,28 @@ export default function LandingPage() {
-
@@ -178,26 +113,9 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - id: "g1", - title: "Spezialitäten", - description: "Handgerolltes Sushi vom Feinsten.", - tag: "Sushi", - imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-selection-wooden-decorative-tray_114579-3489.jpg", - }, + id: "g1", title: "Spezialitäten", description: "Handgerolltes Sushi vom Feinsten.", tag: "Sushi", imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-selection-wooden-decorative-tray_114579-3489.jpg"}, { - id: "g2", - title: "Ambiente", - description: "Entspannt und gemütlich.", - tag: "Atmosphäre", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865355.jpg", - }, - { - id: "g3", - title: "Frische", - description: "Täglich frisch zubereitet.", - tag: "Qualität", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-asian-food-with-copy-space_23-2149035144.jpg", - }, + id: "g2", title: "Ambiente", description: "Entspannt und gemütlich.", tag: "Atmosphäre", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865355.jpg"}, ]} title="Unsere Galerie" description="Ein kleiner Einblick in unsere Sushi-Welt." @@ -212,45 +130,8 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "t1", - name: "Sarah M.", - role: "Stammgast", - company: "Uelzen", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-eating-together_23-2149008757.jpg", - }, - { - id: "t2", - name: "Thomas K.", - role: "Besucher", - company: "Uelzen", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-asian-woman-friends-reunion_23-2149244684.jpg", - }, - { - id: "t3", - name: "Lena R.", - role: "Feinschmecker", - company: "Uelzen", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153828.jpg", - }, - { - id: "t4", - name: "Markus W.", - role: "Fan", - company: "Uelzen", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg", - }, - { - id: "t5", - name: "Julia P.", - role: "Gast", - company: "Uelzen", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-sushi_23-2151344982.jpg", - }, + id: "t1", name: "Sarah M.", role: "Stammgast", company: "Uelzen", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-eating-together_23-2149008757.jpg"}, ]} title="Unsere Gäste lieben uns" description="Über 300+ Bewertungen sprechen für sich." @@ -258,18 +139,16 @@ export default function LandingPage() {
-
@@ -280,14 +159,10 @@ export default function LandingPage() { socialLinks={[ { icon: Facebook, - href: "#", - ariaLabel: "Facebook", - }, + href: "#", ariaLabel: "Facebook"}, { icon: Instagram, - href: "#", - ariaLabel: "Instagram", - }, + href: "#", ariaLabel: "Instagram"}, ]} /> -- 2.49.1