Merge version_5_1780497112957 into main

Merge version_5_1780497112957 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-06-03 14:33:37 +00:00

View File

@@ -4,19 +4,47 @@
import React from 'react';
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import Tag from "@/components/ui/Tag";
import Button from "@/components/ui/Button";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutTestimonial
tag="About Us"
quote="Our mission is to empower businesses with innovative marketing solutions that connect, engage, and convert. We believe in transparent partnerships and sustainable growth."
author="Jane Doe"
role="Founder & CEO, Innovate Marketing"
imageSrc="http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="about" data-webild-section="about" className="py-24 bg-background">
<SectionErrorBoundary name="about">
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<Tag text="About Us" className="mb-6" />
<h2 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl mb-6">
We are a team of passionate marketers.
</h2>
<p className="text-lg text-muted-foreground mb-8">
Our mission is to empower businesses with innovative marketing solutions that connect, engage, and convert. We believe in transparent partnerships and sustainable growth.
</p>
<div className="flex gap-4">
<Button text="Learn More" variant="primary" />
<Button text="Meet the Team" variant="secondary" />
</div>
</div>
<div className="relative h-[500px] rounded-2xl overflow-hidden">
<img
src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80"
alt="Team working"
className="absolute inset-0 w-full h-full object-cover"
/>
</div>
</div>
</div>
<div className="hidden">
<AboutTestimonial
tag="About Us"
quote="Our mission is to empower businesses with innovative marketing solutions that connect, engage, and convert. We believe in transparent partnerships and sustainable growth."
author="Jane Doe"
role="Founder & CEO, Innovate Marketing"
imageSrc="http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg"
/>
</div>
</SectionErrorBoundary>
</div>
);
}