Update src/app/kundenbewertungen/page.tsx
This commit is contained in:
@@ -2,11 +2,22 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function KundenbewertungenPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Startseite", id: "/" },
|
||||||
|
{ name: "Über uns", id: "/ueber-uns" },
|
||||||
|
{ name: "Dienstleistungen", id: "/dienstleistungen" },
|
||||||
|
{ name: "Preise", id: "/preise" },
|
||||||
|
{ name: "Galerie", id: "/galerie" },
|
||||||
|
{ name: "Kundenbewertungen", id: "/kundenbewertungen" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
|
{ name: "Kontakt", id: "/kontakt" }
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="bounce-effect"
|
defaultButtonVariant="bounce-effect"
|
||||||
@@ -23,60 +34,26 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={navItems}
|
||||||
{
|
|
||||||
name: "Startseite",
|
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Über uns",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Dienstleistungen",
|
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Preise",
|
|
||||||
id: "pricing",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Galerie",
|
|
||||||
id: "gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Kundenbewertungen",
|
|
||||||
id: "reviews",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Blog",
|
|
||||||
id: "blog",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Kontakt",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
button={{
|
button={{
|
||||||
text: "Jetzt Angebot anfordern",
|
text: "Jetzt Angebot anfordern", href: "/kontakt"
|
||||||
href: "/kontakt",
|
|
||||||
}}
|
}}
|
||||||
brandName="Rümpel Fix Lippe"
|
brandName="Rümpel Fix Lippe"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonial-marquee" data-section="testimonial-marquee">
|
<div id="reviews-hero" data-section="reviews-hero">
|
||||||
<TestimonialCardSix
|
<TestimonialCardTwo
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Anna Müller", role: "Zufriedene Kundin", testimonial: "Rümpel Fix Lippe hat unsere Wohnung schnell und besenrein geräumt. Absolut empfehlenswert!" },
|
||||||
id: "1",
|
{ id: "2", name: "Max Schmidt", role: "Hausbesitzer", testimonial: "Der Sperrmüll wurde pünktlich abgeholt und umweltgerecht entsorgt. Top Service!" },
|
||||||
},
|
{ id: "3", name: "Lena Meier", role: "Geschäftsfrau", testimonial: "Unsere Büroräume wurden professionell aufgelöst. Weniger Stress und perfekte Ausführung." }
|
||||||
]}
|
]}
|
||||||
title="Stimmen unserer zufriedenen Kunden"
|
title="Was unsere Kunden sagen"
|
||||||
description="Wir sind stolz auf das durchweg positive Feedback, das wir erhalten. Lesen Sie, was unsere Kunden über den professionellen Service von Rümpel Fix Lippe sagen."
|
description="Echte Bewertungen von zufriedenen Kunden."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -84,52 +61,25 @@ export default function LandingPage() {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Unternehmen",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{ label: "Startseite", href: "/" },
|
||||||
label: "Startseite",
|
{ label: "Über uns", href: "/ueber-uns" }
|
||||||
href: "/home",
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Über uns",
|
|
||||||
href: "/ueber-uns",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Dienstleistungen",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{ label: "Dienstleistungen", href: "/dienstleistungen" },
|
||||||
label: "Dienstleistungen",
|
{ label: "Preise", href: "/preise" },
|
||||||
href: "/dienstleistungen",
|
{ label: "Galerie", href: "/galerie" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Preise",
|
|
||||||
href: "/preise",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Galerie",
|
|
||||||
href: "/galerie",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Hilfe & Kontakt",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{ label: "Kundenbewertungen", href: "/kundenbewertungen" },
|
||||||
label: "Kundenbewertungen",
|
{ label: "Blog", href: "/blog" },
|
||||||
href: "/kundenbewertungen",
|
{ label: "Kontakt", href: "/kontakt" }
|
||||||
},
|
]
|
||||||
{
|
}
|
||||||
label: "Blog",
|
|
||||||
href: "/blog",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Kontakt",
|
|
||||||
href: "/kontakt",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="Rümpel Fix Lippe"
|
logoText="Rümpel Fix Lippe"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user