diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 49ba758..57ac8f6 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -7,7 +7,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -export default function LandingPage() { +export default function GalleryPage() { return ( @@ -58,20 +44,8 @@ export default function LandingPage() { title="Referenzprojekte" description="Ein Blick auf unsere Arbeit." testimonials={[ - { - id: "g1", - name: "Projekt A", - role: "Wohnhaus", - testimonial: "Fantastische Farbergebnisse.", - imageSrc: "http://img.b2bpic.net/free-photo/male-hand-paints-with-white-paint-wood-painting-concept-close-up-place-text_169016-4433.jpg", - }, - { - id: "g2", - name: "Projekt B", - role: "Bürogebäude", - testimonial: "Höchste Präzision im Zeitplan.", - imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks-man-industrial-concept-there-is-place-text-object-is-close-up_169016-4429.jpg", - }, + { id: "g1", name: "Projekt A", role: "Wohnhaus", testimonial: "Fantastische Farbergebnisse.", imageSrc: "http://img.b2bpic.net/free-photo/male-hand-paints-with-white-paint-wood-painting-concept-close-up-place-text_169016-4433.jpg" }, + { id: "g2", name: "Projekt B", role: "Bürogebäude", testimonial: "Höchste Präzision im Zeitplan.", imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks-man-industrial-concept-there-is-place-text-object-is-close-up_169016-4429.jpg" }, ]} /> @@ -84,20 +58,8 @@ export default function LandingPage() { title="Zahlen" description="Was wir leisten." metrics={[ - { - id: "n1", - value: "500+", - title: "Wände gestrichen", - description: "Mit Sorgfalt.", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-paint-brush_23-2148612741.jpg", - }, - { - id: "n2", - value: "100%", - title: "Zufriedenheit", - description: "Unser oberstes Ziel.", - imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks-man-industrial-concept-there-is-place-text-object-is-close-up_169016-4430.jpg", - }, + { id: "n1", value: "500+", title: "Wände gestrichen", description: "Mit Sorgfalt.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-paint-brush_23-2148612741.jpg" }, + { id: "n2", value: "100%", title: "Zufriedenheit", description: "Unser oberstes Ziel.", imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks-man-industrial-concept-there-is-place-text-object-is-close-up_169016-4430.jpg" }, ]} /> @@ -106,32 +68,8 @@ export default function LandingPage() {