Merge version_17_1782907878439 into main #18

Merged
bender merged 1 commits from version_17_1782907878439 into main 2026-07-01 12:12:42 +00:00
3 changed files with 1 additions and 34 deletions

View File

@@ -8,7 +8,6 @@ import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import TestimonialsSection from './HomePage/sections/Testimonials';
import MetricsSection from './HomePage/sections/Metrics';
import TestimonialSection from './HomePage/sections/Testimonial';
import AboutSection from './HomePage/sections/About';
export default function HomePage(): React.JSX.Element {
@@ -20,7 +19,6 @@ export default function HomePage(): React.JSX.Element {
<MetricsSection />
<TestimonialSection />
<AboutSection />
</>

View File

@@ -11,7 +11,7 @@ export default function HeroSection(): React.JSX.Element {
<SectionErrorBoundary name="hero">
<HeroBillboard
title="Forvandl byggeplads til premium medieflade."
description="Urban OOH forbinder bygherrer med de stærkeste storformat-placeringer i Danmark."
description="Urban OOH forbinder brands med de stærkeste storformat-placeringer i Danmark."
primaryButton={{
text: "For bygherrer", href: "/bygherrer"}}
secondaryButton={{

View File

@@ -1,31 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonial" section.
import React from 'react';
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialSection(): React.JSX.Element {
return (
<div id="testimonial" data-section="testimonial">
<SectionErrorBoundary name="testimonial">
<TestimonialTrustCard
quote="Urban OOH har transformeret vores byggeplads til en moderne medieflade. En professionel proces fra start til slut."
rating={5}
author="Jesper Vester, Vester Byg"
avatars={[
{
name: "Anders", imageSrc: "http://img.b2bpic.net/free-photo/male-cool-influencer-hosting-live-presentation-with-hands-free-microphone_482257-126542.jpg"},
{
name: "Mette", imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-woman-exploring-city_23-2149186681.jpg"},
{
name: "Søren", imageSrc: "http://img.b2bpic.net/free-photo/young-japanese-woman-outdoors_23-2149010153.jpg"},
{
name: "Trine", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-traveling-london_23-2149259455.jpg"},
]}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}