From c408b6c141f79f6f9bb00ec0421ce93d17275c64 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 5 Jul 2026 23:57:40 +0000 Subject: [PATCH] Bob AI: Doubled the size of the heading in the about section --- src/pages/HomePage/sections/About.tsx | 47 ++++++++++++++++++++------- 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 9c8bf78..a5cbf3e 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -1,19 +1,42 @@ -// 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 Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; -import React from 'react'; -import AboutText from '@/components/sections/about/AboutText'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +interface AboutTextProps { + title: string; + primaryButton?: { text: string; href: string }; + secondaryButton?: { text: string; href: string }; + textAnimation: "slide-up" | "fade-blur" | "fade"; +} -export default function AboutSection(): React.JSX.Element { +const AboutInline = () => { return ( -
- - +
+ - + + {(undefined || undefined) && ( +
+ {undefined &&
+ )}
+ + ); +}; + +export default function AboutSection() { + return ( +
+ +
); } -- 2.49.1