From eaa941029bc7657368d8ac61f0999623a190c892 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 18 Jun 2026 16:16:18 +0000 Subject: [PATCH] Bob AI: Made the about section a single full-width shape and centere --- src/pages/HomePage/sections/About.tsx | 67 ++++++++++++++++++++------- 1 file changed, 50 insertions(+), 17 deletions(-) diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 440badb..ef03d6c 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -1,22 +1,55 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "about" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import { Quote } from "lucide-react"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; -import React from 'react'; -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +type AboutTestimonialProps = { + tag: string; + quote: string; + author: string; + role: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); -export default function AboutSection(): React.JSX.Element { +const AboutInline = () => { return ( -
- - - +
+
+
+
+ +
+ +
+
+

{"About Us"}

+
+ + + +
+ {"Ruslan Yusupov"} + + {"Founder & Creative Director"} +
+
+
+
); -} \ No newline at end of file +}; + +export default function AboutSection() { + return ( +
+ +
+ ); +}