From 1fdf7f7f8c731b5167c7a57e20ae1b32d5a7b52f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 11:10:06 +0000 Subject: [PATCH] Bob AI: Added Bento Features section with provided images --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/BentoFeatures.tsx | 92 +++++++++++++++++++ 2 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/BentoFeatures.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7a4c755..6e503cd 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -18,7 +18,8 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import MediaCarouselSection from './HomePage/sections/MediaCarousel';export default function HomePage(): React.JSX.Element { +import MediaCarouselSection from './HomePage/sections/MediaCarousel'; +import BentoFeaturesSection from './HomePage/sections/BentoFeatures';export default function HomePage(): React.JSX.Element { return ( @@ -27,6 +28,7 @@ import MediaCarouselSection from './HomePage/sections/MediaCarousel';export defa + diff --git a/src/pages/HomePage/sections/BentoFeatures.tsx b/src/pages/HomePage/sections/BentoFeatures.tsx new file mode 100644 index 0000000..feb415b --- /dev/null +++ b/src/pages/HomePage/sections/BentoFeatures.tsx @@ -0,0 +1,92 @@ +import TextAnimation from "@/components/ui/TextAnimation"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import Tag from "@/components/ui/Tag"; + +export default function BentoFeaturesSection() { + return ( +
+
+
+ + + + + +

+ Experience the next level of relaxation with our state-of-the-art neck massager. +

+
+
+ +
+ +
+
+

Deep Tissue Relief

+

Targeted pulse technology reaches deep muscle layers to alleviate tension and promote relaxation.

+
+
+ +
+
+
+ + +
+
+ +
+
+

Ergonomic Design

+

Perfectly contours to your neck for maximum comfort during extended use.

+
+
+
+ + +
+
+ +
+
+

Sleek Aesthetics

+

Modern design that looks as good as it feels, blending seamlessly into your lifestyle.

+
+
+
+ + +
+
+

Portable Comfort

+

Take your relaxation anywhere you go with our lightweight and travel-friendly design.

+
+
+ +
+
+
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1