Merge version_38_1782911276408 into main #40

Merged
bender merged 1 commits from version_38_1782911276408 into main 2026-07-01 13:13:56 +00:00
2 changed files with 12 additions and 16 deletions

View File

@@ -51,7 +51,7 @@ const FooterSimple = ({
return (
<footer data-section="footer" aria-label="Site footer" className="w-full py-15 mt-20 primary-button text-primary-cta-text">
<div className="w-content-width mx-auto">
<div className="flex flex-col md:flex-row gap-10 md:gap-0 justify-between items-start mb-10">
<div className="flex flex-col md:flex-col md:flex-row gap-10 md:gap-0 justify-between items-start mb-10">
<h2 className="text-4xl font-semibold">{brand}</h2>
<div className="w-full md:w-fit flex flex-wrap gap-y-10 md:gap-12">

View File

@@ -1,23 +1,19 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
// Created by add_section_from_catalog (AboutTestimonialParallax).
import React from 'react';
import AboutTestimonialParallax from '@/components/sections/about/AboutTestimonialParallax';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutTestimonialParallax
tag="Om os"
quote="Vi bygger bro mellem byggepladser og brands."
author="Urban OOH Team"
role="Media Partner"
videoSrc="https://storage.googleapis.com/webild/default/video-placeholder.mp4"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<div data-webild-section="about" id="about">
<AboutTestimonialParallax
videoSrc="https://storage.googleapis.com/webild/default/video-placeholder.mp4"
tag="Om os"
role="Media Partner"
textAnimation="fade"
author="Urban OOH Team"
quote="Vi bygger bro mellem byggepladser og brands."
/>
</div>
);
}