diff --git a/src/app/page.tsx b/src/app/page.tsx index 5df57c7..a8df9af 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { Utensils } from "lucide-react"; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import { Utensils, Star, Award } from "lucide-react"; export default function LandingPage() { return ( @@ -30,22 +30,10 @@ export default function LandingPage() { @@ -156,48 +76,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "1", - name: "Mega-Schnitzel", - price: "14,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-chips-plate-with-chalkboard-cutlery_23-2148784855.jpg?_wi=2", - imageAlt: "Schnitzel", - }, - { - id: "2", - name: "Currywurst", - price: "6,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-grilled-sausages-from-small-cast-iron-pan_140725-7139.jpg?_wi=2", - imageAlt: "Currywurst", - }, - { - id: "3", - name: "Hartenrod Burger", - price: "12,90 €", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-hamburger-menu-assortment_23-2148614053.jpg?_wi=2", - imageAlt: "Burger", - }, - { - id: "4", - name: "Bauernsalat", - price: "9,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-chips-plate-with-chalkboard-cutlery_23-2148784855.jpg?_wi=3", - imageAlt: "Salat", - }, - { - id: "5", - name: "Käsespätzle", - price: "11,00 €", - imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-grilled-sausages-from-small-cast-iron-pan_140725-7139.jpg?_wi=3", - imageAlt: "Spätzle", - }, - { - id: "6", - name: "Bratwurst", - price: "5,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-hamburger-menu-assortment_23-2148614053.jpg?_wi=3", - imageAlt: "Wurst", - }, + { id: "1", name: "Mega-Schnitzel", price: "14,50 €", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fish-chips-plate-with-chalkboard-cutlery_23-2148784855.jpg?_wi=2", imageAlt: "Schnitzel" }, + { id: "2", name: "Currywurst", price: "6,50 €", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-grilled-sausages-from-small-cast-iron-pan_140725-7139.jpg?_wi=2", imageAlt: "Currywurst" }, + { id: "3", name: "Hartenrod Burger", price: "12,90 €", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-hamburger-menu-assortment_23-2148614053.jpg?_wi=2", imageAlt: "Burger" }, ]} title="Die Klassiker" description="Unscheinbar gut – unsere Bestseller, die Stammgäste lieben." @@ -205,117 +86,54 @@ export default function LandingPage() {
-
-
); -} +} \ No newline at end of file