From 3b428bf5ed56dcb74e705d2c0cff74e21763da56 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 27 Apr 2026 01:34:50 +0300 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- src/components/sections/blog/BlogSection.tsx | 49 ++++++++++++++++++++ src/pages/HomePage.tsx | 5 ++ 2 files changed, 54 insertions(+) create mode 100644 src/components/sections/blog/BlogSection.tsx diff --git a/src/components/sections/blog/BlogSection.tsx b/src/components/sections/blog/BlogSection.tsx new file mode 100644 index 0000000..aa5a363 --- /dev/null +++ b/src/components/sections/blog/BlogSection.tsx @@ -0,0 +1,49 @@ +"use client"; + +import BlogSimpleCards from '@/components/sections/blog/BlogSimpleCards'; + +export default function BlogSection() { + return ( + + ); +} \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 952bed2..b82f4f9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -8,6 +8,7 @@ import ProductVariantCards from '@/components/sections/product/ProductVariantCar import InfoCardMarquee from '@/components/ui/InfoCardMarquee'; import TeamSection from '@/components/sections/team/TeamSection'; import StatsSection from '@/components/sections/other/StatsSection'; +import { BlogSection } from '@/components/sections/blog/BlogSection'; export default function HomePage() { return ( @@ -300,6 +301,10 @@ export default function HomePage() {
+ +
+ +
); } \ No newline at end of file