Update src/app/uber-uns/page.tsx

This commit is contained in:
2026-03-10 15:54:56 +00:00
parent 50510a57eb
commit e244983cd6

View File

@@ -33,12 +33,10 @@ export default function AboutPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Franke & Twiehaus"
navItems={navItems.map((item) => ({
name: item.name,
id: item.id,
}))}
navItems={navItems}
button={{
text: "Jetzt anrufen", href: "tel:+49591123456"}}
text: "Jetzt anrufen", href: "tel:+49591123456"
}}
/>
</div>
@@ -69,16 +67,20 @@ export default function AboutPage() {
testimonials={[
{
id: "1", name: "Hans Müller", handle: "Bauunternehmen Müller", testimonial: "Die Arbeit wird hier zügig und genau erledigt. Wir bringen alle unsere Fahrzeuge hierher.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-showing-thumbs-up-standing-grey-wall_231208-8696.jpg", imageAlt: "satisfied customer business owner portrait"},
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-showing-thumbs-up-standing-grey-wall_231208-8696.jpg", imageAlt: "satisfied customer business owner portrait"
},
{
id: "2", name: "Frank Lehmann", handle: "Landwirtschaftsbetrieb Lehmann", testimonial: "Top Beratung und Abwicklung der Reparaturen. Schnell, kompetent und freundlich.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-standing-wheat-field_23-2148233466.jpg", imageAlt: "farmer customer professional portrait"},
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-standing-wheat-field_23-2148233466.jpg", imageAlt: "farmer customer professional portrait"
},
{
id: "3", name: "Klaus Schmidt", handle: "Schmidt Logistik GmbH", testimonial: "Service, Reparatur und Freundlichkeit des Personals alles bestens. Sehr empfehlenswert.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-employee_1098-1210.jpg", imageAlt: "logistics company owner portrait"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-employee_1098-1210.jpg", imageAlt: "logistics company owner portrait"
},
{
id: "4", name: "Bernd Wagner", handle: "Stadt Lingen Fuhrpark", testimonial: "Zuverlässig, professionell und immer pünktlich. Die beste Werkstatt in der Region.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/i-just-got-out-office-go-meeting_329181-15209.jpg", imageAlt: "municipal fleet manager portrait"},
imageSrc: "http://img.b2bpic.net/free-photo/i-just-got-out-office-go-meeting_329181-15209.jpg", imageAlt: "municipal fleet manager portrait"
},
]}
/>
</div>
@@ -91,9 +93,11 @@ export default function AboutPage() {
description="Kontaktieren Sie uns jetzt für eine Beratung oder um einen Termin zu vereinbaren. Wir kümmern uns um Ihre Nutzfahrzeuge."
buttons={[
{
text: "Jetzt anrufen", href: "tel:+49591123456"},
text: "Jetzt anrufen", href: "tel:+49591123456"
},
{
text: "Termin anfragen", href: "/kontakt"},
text: "Termin anfragen", href: "/kontakt"
},
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}