Update src/app/services/page.tsx
This commit is contained in:
@@ -9,7 +9,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Building, Layout, Paintbrush } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -27,28 +27,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,30 +44,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Innenmalerei",
|
||||
description: "Frische Farben für Ihr Zuhause.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Paintbrush,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/painter-paints-wall-with-roller_1398-561.jpg?_wi=3",
|
||||
imageAlt: "painter paints wall with roller",
|
||||
},
|
||||
{
|
||||
title: "Fassaden",
|
||||
description: "Schutz und Ästhetik für Ihr Gebäude.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Building,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks_169016-6486.jpg?_wi=2",
|
||||
imageAlt: "painter paints wall with roller",
|
||||
},
|
||||
{
|
||||
title: "Tapezieren",
|
||||
description: "Kreative Designs an Ihren Wänden.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Layout,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-paints-wall-with-roller_1398-1596.jpg?_wi=2",
|
||||
imageAlt: "painter paints wall with roller",
|
||||
},
|
||||
{ title: "Innenmalerei", description: "Frische Farben für Ihr Zuhause.", bentoComponent: "reveal-icon", icon: Paintbrush },
|
||||
{ title: "Fassaden", description: "Schutz und Ästhetik für Ihr Gebäude.", bentoComponent: "reveal-icon", icon: Building },
|
||||
{ title: "Tapezieren", description: "Kreative Designs an Ihren Wänden.", bentoComponent: "reveal-icon", icon: Layout },
|
||||
]}
|
||||
title="Unsere Dienstleistungen"
|
||||
description="Vom ersten Pinselstrich bis zur finalen Veredelung."
|
||||
@@ -95,22 +60,8 @@ export default function LandingPage() {
|
||||
title="Unsere Arbeitsweise"
|
||||
description="Wie wir Ihr Projekt umsetzen."
|
||||
features={[
|
||||
{
|
||||
tag: "Schritt 1",
|
||||
title: "Beratung",
|
||||
subtitle: "Vor Ort",
|
||||
description: "Wir erfassen Ihre Wünsche.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks_169016-6486.jpg?_wi=3",
|
||||
imageAlt: "maler schweiz pinsel",
|
||||
},
|
||||
{
|
||||
tag: "Schritt 2",
|
||||
title: "Ausführung",
|
||||
subtitle: "Handwerk",
|
||||
description: "Sauber und präzise.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-paints-wall-with-roller_1398-1596.jpg?_wi=3",
|
||||
imageAlt: "maler schweiz pinsel",
|
||||
},
|
||||
{ tag: "Schritt 1", title: "Beratung", subtitle: "Vor Ort", description: "Wir erfassen Ihre Wünsche.", imageSrc: "http://img.b2bpic.net/free-photo/man-paints-with-white-paint-wooden-planks_169016-6486.jpg" },
|
||||
{ tag: "Schritt 2", title: "Ausführung", subtitle: "Handwerk", description: "Sauber und präzise.", imageSrc: "http://img.b2bpic.net/free-photo/woman-paints-wall-with-roller_1398-1596.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -122,18 +73,9 @@ export default function LandingPage() {
|
||||
title="Leistungs-FAQ"
|
||||
description="Details zu unseren Services."
|
||||
faqs={[
|
||||
{
|
||||
id: "s1",
|
||||
title: "Materialien",
|
||||
content: "Nur ökologisch und hochwertig.",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
title: "Garantie",
|
||||
content: "Auf alle Arbeiten.",
|
||||
},
|
||||
{ id: "s1", title: "Materialien", content: "Nur ökologisch und hochwertig." },
|
||||
{ id: "s2", title: "Garantie", content: "Auf alle Arbeiten." },
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -141,32 +83,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