From b92ea25d748fe4d39129ddce9956286d3a2df842 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 02:51:57 +0000 Subject: [PATCH] Bob AI: Created a dedicated section for the company verse. --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Verse.tsx | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Verse.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a9356d7..84e18cf 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,10 +15,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import ContactSection from './HomePage/sections/Contact'; -import TrustMetricsSection from './HomePage/sections/TrustMetrics';export default function HomePage(): React.JSX.Element { +import TrustMetricsSection from './HomePage/sections/TrustMetrics'; +import VerseSection from './HomePage/sections/Verse';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/Verse.tsx b/src/pages/HomePage/sections/Verse.tsx new file mode 100644 index 0000000..50f58ca --- /dev/null +++ b/src/pages/HomePage/sections/Verse.tsx @@ -0,0 +1,25 @@ +import { motion } from "motion/react" +import TextAnimation from "@/components/ui/TextAnimation" + +export default function VerseSection() { + return ( +
+
+ + +
+
+ ) +} \ No newline at end of file -- 2.49.1