Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
150
src/app/page.tsx
150
src/app/page.tsx
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Zap, CheckCircle, Building, Shield } from "lucide-react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
@@ -30,21 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Leistungen",
|
||||
id: "#features",
|
||||
},
|
||||
name: "Leistungen", id: "#features"},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "#team",
|
||||
},
|
||||
name: "Über uns", id: "#team"},
|
||||
{
|
||||
name: "Referenzen",
|
||||
id: "#socialProof",
|
||||
},
|
||||
name: "Referenzen", id: "#socialProof"},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Kontakt", id: "#contact"},
|
||||
]}
|
||||
brandName="BEKOER"
|
||||
/>
|
||||
@@ -56,32 +49,20 @@ export default function LandingPage() {
|
||||
description="Professionelle Hausverwaltung, persönlicher Service und nachhaltiger Werterhalt — für Eigentümergemeinschaften und Vermieter in der Region 10."
|
||||
buttons={[
|
||||
{
|
||||
text: "Anfrage",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Anfrage", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-from-futuristic-buildings-gorgeous-dubai_1304-3029.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-from-futuristic-buildings-gorgeous-dubai_1304-3029.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836749.jpg",
|
||||
alt: "Modern skyscrapers in business district",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836749.jpg", alt: "Modern skyscrapers in business district"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/asian-country-skyscraper-urban-landscape_23-2148889558.jpg",
|
||||
alt: "Asian country skyscraper urban landscape",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/asian-country-skyscraper-urban-landscape_23-2148889558.jpg", alt: "Asian country skyscraper urban landscape"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/skyscrapers-new-york-downtown-usa_1268-19531.jpg",
|
||||
alt: "Skyscrapers in New York downtown USA",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/skyscrapers-new-york-downtown-usa_1268-19531.jpg", alt: "Skyscrapers in New York downtown USA"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-skyscraper-canary-wharf-district-london-united-kingdom_1268-25818.jpg",
|
||||
alt: "View of a skyscraper in the Canary Wharf district in London United Kingdom",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/view-skyscraper-canary-wharf-district-london-united-kingdom_1268-25818.jpg", alt: "View of a skyscraper in the Canary Wharf district in London United Kingdom"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg",
|
||||
alt: "young businessman happy expression",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", alt: "young businessman happy expression"},
|
||||
]}
|
||||
avatarText="Über 100 zufriedene Partner"
|
||||
/>
|
||||
@@ -94,34 +75,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100+",
|
||||
title: "Verwaltete Einheiten",
|
||||
items: [
|
||||
"Moderne Bestände",
|
||||
"Sorgfältige Pflege",
|
||||
"Aktive Steuerung",
|
||||
],
|
||||
id: "m1", value: "100+", title: "Verwaltete Einheiten", items: [
|
||||
"Moderne Bestände", "Sorgfältige Pflege", "Aktive Steuerung"],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "100%",
|
||||
title: "Persönlich betreut",
|
||||
items: [
|
||||
"Direkter Ansprechpartner",
|
||||
"Transparente Kommunikation",
|
||||
"Individuelle Lösungen",
|
||||
],
|
||||
id: "m2", value: "100%", title: "Persönlich betreut", items: [
|
||||
"Direkter Ansprechpartner", "Transparente Kommunikation", "Individuelle Lösungen"],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "5.0",
|
||||
title: "Google Bewertung",
|
||||
items: [
|
||||
"Höchste Kundenzufriedenheit",
|
||||
"Transparenz",
|
||||
"Fachwissen",
|
||||
],
|
||||
id: "m3", value: "5.0", title: "Google Bewertung", items: [
|
||||
"Höchste Kundenzufriedenheit", "Transparenz", "Fachwissen"],
|
||||
},
|
||||
]}
|
||||
title="Zahlen & Fakten"
|
||||
@@ -135,33 +98,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "WEG-Verwaltung",
|
||||
description: "Transparente Verwaltung von Eigentümergemeinschaften mit Fokus auf Werterhalt.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5brp22",
|
||||
imageAlt: "professional logo minimalist",
|
||||
},
|
||||
title: "WEG-Verwaltung", description: "Transparente Verwaltung von Eigentümergemeinschaften mit Fokus auf Werterhalt.", buttonIcon: Zap,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5brp22", imageAlt: "professional logo minimalist"},
|
||||
{
|
||||
title: "Mietverwaltung",
|
||||
description: "Sorgenfreie Mietverwaltung für Vermieter in Ingolstadt und Umgebung.",
|
||||
buttonIcon: "CheckCircle",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/look-from-futuristic-buildings-gorgeous-dubai_1304-3029.jpg?_wi=2",
|
||||
imageAlt: "professional logo minimalist",
|
||||
},
|
||||
title: "Mietverwaltung", description: "Sorgenfreie Mietverwaltung für Vermieter in Ingolstadt und Umgebung.", buttonIcon: CheckCircle,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/look-from-futuristic-buildings-gorgeous-dubai_1304-3029.jpg", imageAlt: "professional logo minimalist"},
|
||||
{
|
||||
title: "Objektmanagement",
|
||||
description: "Aktive Instandhaltung und effiziente Koordination aller Gewerke.",
|
||||
buttonIcon: "Building",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg?_wi=1",
|
||||
imageAlt: "professional logo minimalist",
|
||||
},
|
||||
title: "Objektmanagement", description: "Aktive Instandhaltung und effiziente Koordination aller Gewerke.", buttonIcon: Building,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg", imageAlt: "professional logo minimalist"},
|
||||
{
|
||||
title: "Transparenz",
|
||||
description: "Moderne Technik für volle Einsicht in alle Unterlagen und Finanzen.",
|
||||
buttonIcon: "Shield",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836749.jpg",
|
||||
imageAlt: "professional logo minimalist",
|
||||
},
|
||||
title: "Transparenz", description: "Moderne Technik für volle Einsicht in alle Unterlagen und Finanzen.", buttonIcon: Shield,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836749.jpg", imageAlt: "professional logo minimalist"},
|
||||
]}
|
||||
title="Hausverwaltung neu gedacht"
|
||||
description="Ganzheitliches Immobilienmanagement mit Erfahrung, Transparenz und modernster Technik."
|
||||
@@ -175,19 +122,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
groups={[
|
||||
{
|
||||
id: "team-g1",
|
||||
groupTitle: "Management",
|
||||
members: [
|
||||
id: "team-g1", groupTitle: "Management", members: [
|
||||
{
|
||||
id: "fabian",
|
||||
title: "Fabian Schlamp",
|
||||
subtitle: "Inhaber & Gründer",
|
||||
detail: "Erfahrener Experte für Immobilienmanagement mit lokaler Verwurzelung.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg?_wi=2",
|
||||
},
|
||||
id: "fabian", title: "Fabian Schlamp", subtitle: "Inhaber & Gründer", detail: "Erfahrener Experte für Immobilienmanagement mit lokaler Verwurzelung.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg"},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/look-from-futuristic-buildings-gorgeous-dubai_1304-3029.jpg?_wi=3",
|
||||
imageAlt: "professional man portrait",
|
||||
},
|
||||
]}
|
||||
title="Ihre Experten"
|
||||
@@ -200,12 +138,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"LIND Immobilien",
|
||||
"Ingolstadt Service",
|
||||
"Regional Partner A",
|
||||
"Regional Partner B",
|
||||
"Regional Partner C",
|
||||
]}
|
||||
"LIND Immobilien", "Ingolstadt Service", "Regional Partner A", "Regional Partner B", "Regional Partner C"]}
|
||||
title="Unsere Partner"
|
||||
description="Zusammenarbeit mit regionalen Experten für höchste Qualität."
|
||||
/>
|
||||
@@ -215,8 +148,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Kontakt"
|
||||
title="Sprechen wir über Ihre Immobilie"
|
||||
description="Vereinbaren Sie ein kostenloses Erstgespräch – wir melden uns innerhalb von 24 Stunden bei Ihnen zurück."
|
||||
@@ -227,29 +159,19 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Leistungen",
|
||||
items: [
|
||||
title: "Leistungen", items: [
|
||||
{
|
||||
label: "WEG-Verwaltung",
|
||||
href: "#",
|
||||
},
|
||||
label: "WEG-Verwaltung", href: "#"},
|
||||
{
|
||||
label: "Mietverwaltung",
|
||||
href: "#",
|
||||
},
|
||||
label: "Mietverwaltung", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
title: "Rechtliches", items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
label: "Impressum", href: "#"},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "#",
|
||||
},
|
||||
label: "Datenschutz", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user