From a1d8745e0732b33a127e994f1f282baadddcef87 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 10:43:02 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 957c132..ca2d8c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,9 +30,10 @@ export default function LandingPage() { @@ -44,7 +45,7 @@ export default function LandingPage() { title="Vision Bau GmbH: Hochbau & Generalunternehmen" description="Ihr Partner für exzellente Bauprojekte. Von der Planung bis zur Schlüsselübergabe – wir realisieren Ihre Visionen mit höchster Präzision." buttons={[ - { text: "Projekte ansehen", href: "#features" }, + { text: "Portfolio ansehen", href: "/portfolio" }, { text: "Kontakt", href: "#contact" }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/uploaded-1774780718458-wgii0wzu.png" @@ -90,8 +91,6 @@ export default function LandingPage() { { id: "1", name: "Max Mustermann", role: "Bauherr", company: "Wohnanlage Süd", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/professional-headshot-of-a-happy-homeown-1774780738980-b97075c5.png?_wi=1" }, { id: "2", name: "Sabine Schmidt", role: "Projektleiterin", company: "Gewerbebau Nord", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/professional-headshot-of-a-happy-homeown-1774780741824-4540ba8d.png" }, { id: "3", name: "Thomas Weber", role: "Architekt", company: "Weber Plan", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/professional-headshot-of-a-happy-homeown-1774780739793-8dad19fc.png" }, - { id: "4", name: "Laura Fischer", role: "Eigentümerin", company: "Private Villa", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/professional-headshot-of-a-happy-homeown-1774780738750-b90049bc.png" }, - { id: "5", name: "Markus Berg", role: "Geschäftsführer", company: "Berg Immobilien", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcFxsxUA2R24B78Wlym0zuRtBJ/professional-headshot-of-a-happy-homeown-1774780738980-b97075c5.png?_wi=2" }, ]} kpiItems={[ { value: "99%", label: "Termintreue" }, -- 2.49.1 From c635f1d560824a4ee94146d295b77b8b1c5fade3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 10:43:03 +0000 Subject: [PATCH 2/2] Add src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/app/portfolio/page.tsx diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..1609b40 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,62 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; + +export default function PortfolioPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1