Update src/app/gallery/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Leistungen",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Referenzen",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Über uns", id: "/about" },
|
||||
{ name: "Leistungen", id: "/services" },
|
||||
{ name: "Referenzen", id: "/gallery" },
|
||||
{ name: "Kontakt", id: "/contact" },
|
||||
]}
|
||||
brandName="Utiger Maler AG"
|
||||
button={{ text: "Anfragen", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -106,32 +68,8 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Utiger Maler AG"
|
||||
columns={[
|
||||
{
|
||||
title: "Unternehmen",
|
||||
items: [
|
||||
{
|
||||
label: "Über uns",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Stellen",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Unternehmen", items: [{ label: "Über uns", href: "/about" }, { label: "Stellen", href: "#" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "#" }, { label: "Datenschutz", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user