diff --git a/src/app/page.tsx b/src/app/page.tsx index bb10c6b..f0dbb42 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; @@ -30,66 +30,32 @@ export default function LandingPage() {
-
@@ -111,47 +77,17 @@ export default function LandingPage() { useInvertedBackground={true} products={[ { - id: "p1", - name: "Klassik Baguette", - price: "7,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-salmon-sandwich-with-cutlery_23-2148640241.jpg", - imageAlt: "Klassik Baguette", - }, + id: "p1", name: "Klassik Baguette", price: "7,50 €", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-salmon-sandwich-with-cutlery_23-2148640241.jpg", imageAlt: "Klassik Baguette"}, { - id: "p2", - name: "Beeren-Crêpe", - price: "6,90 €", - imageSrc: "http://img.b2bpic.net/free-photo/pancake-with-berries-fluffy-colorful_661915-566.jpg", - imageAlt: "Beeren-Crêpe", - }, + id: "p2", name: "Beeren-Crêpe", price: "6,90 €", imageSrc: "http://img.b2bpic.net/free-photo/pancake-with-berries-fluffy-colorful_661915-566.jpg", imageAlt: "Beeren-Crêpe"}, { - id: "p3", - name: "Gartensalat", - price: "8,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-pasta-salad-with-balsamic-vinegar-kitchen-towel_23-2148700376.jpg", - imageAlt: "Gartensalat", - }, + id: "p3", name: "Gartensalat", price: "8,50 €", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pasta-salad-with-balsamic-vinegar-kitchen-towel_23-2148700376.jpg", imageAlt: "Gartensalat"}, { - id: "p4", - name: "Pizza Margherita", - price: "9,90 €", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-indoors_23-2150873906.jpg?_wi=2", - imageAlt: "Pizza Margherita", - }, + id: "p4", name: "Pizza Margherita", price: "9,90 €", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-indoors_23-2150873906.jpg?_wi=2", imageAlt: "Pizza Margherita"}, { - id: "p5", - name: "Frühstücks-Set", - price: "12,50 €", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408574.jpg?_wi=2", - imageAlt: "Frühstücks-Set", - }, + id: "p5", name: "Frühstücks-Set", price: "12,50 €", imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408574.jpg?_wi=2", imageAlt: "Frühstücks-Set"}, { - id: "p6", - name: "Cappuccino", - price: "3,80 €", - imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-latte-wood-table-coffee-shop-cafe_1150-12757.jpg", - imageAlt: "Cappuccino", - }, + id: "p6", name: "Cappuccino", price: "3,80 €", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-latte-wood-table-coffee-shop-cafe_1150-12757.jpg", imageAlt: "Cappuccino"}, ]} title="Unsere Favoriten" description="Eine Auswahl unserer beliebtesten Gerichte, frisch für Sie zubereitet." @@ -167,23 +103,14 @@ export default function LandingPage() { description="Erfahren Sie, was uns auszeichnet und warum unsere Kunden uns lieben." metrics={[ { - id: "m1", - icon: Coffee, - title: "Kaffeespezialitäten", - value: "15+", - }, + id: "m1", icon: Coffee, + title: "Kaffeespezialitäten", value: "15+"}, { - id: "m2", - icon: Users, - title: "Zufriedene Gäste", - value: "2000+", - }, + id: "m2", icon: Users, + title: "Zufriedene Gäste", value: "2000+"}, { - id: "m3", - icon: Star, - title: "Jahre Qualität", - value: "10+", - }, + id: "m3", icon: Star, + title: "Jahre Qualität", value: "10+"}, ]} /> @@ -192,14 +119,11 @@ export default function LandingPage() { @@ -210,33 +134,21 @@ export default function LandingPage() { logoText="Crossini Schwachhausen" columns={[ { - title: "Informationen", - items: [ + title: "Informationen", items: [ { - label: "Über uns", - href: "#about", - }, + label: "Über uns", href: "#about"}, { - label: "Speisekarte", - href: "#products", - }, + label: "Speisekarte", href: "#products"}, { - label: "Kontakt", - href: "#contact", - }, + label: "Kontakt", href: "#contact"}, ], }, { - title: "Rechtliches", - items: [ + title: "Rechtliches", items: [ { - label: "Impressum", - href: "#", - }, + label: "Impressum", href: "#"}, { - label: "Datenschutz", - href: "#", - }, + label: "Datenschutz", href: "#"}, ], }, ]} @@ -245,4 +157,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file