From 704d2f895996a6c3ba60a5aa2c7da49d95f5d16c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 15:44:11 +0000 Subject: [PATCH] Bob AI: Added video testimonials section for high-impact social proo --- src/pages/HomePage.tsx | 4 +- .../HomePage/sections/VideoTestimonials.tsx | 78 +++++++++++++++++++ 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/VideoTestimonials.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index bd5c9e1..5cdc529 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -12,7 +12,8 @@ import RatingSection from './HomePage/sections/Rating'; import MetricsSection from './HomePage/sections/Metrics'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import VideoTestimonialsSection from './HomePage/sections/VideoTestimonials';export default function HomePage(): React.JSX.Element { return ( <> @@ -28,6 +29,7 @@ export default function HomePage(): React.JSX.Element { + ); } diff --git a/src/pages/HomePage/sections/VideoTestimonials.tsx b/src/pages/HomePage/sections/VideoTestimonials.tsx new file mode 100644 index 0000000..0026e49 --- /dev/null +++ b/src/pages/HomePage/sections/VideoTestimonials.tsx @@ -0,0 +1,78 @@ +import { motion } from "motion/react"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Card from "@/components/ui/Card"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import RatingStars from "@/components/ui/RatingStars"; +import Tag from "@/components/ui/Tag"; + +export default function VideoTestimonials() { + const testimonials = [ + { + name: "Arjun K.", + role: "Developer", + company: "TechCorp", + rating: 5, + videoSrc: "https://videos.pexels.com/video-files/3129957/3129957-uhd_2560_1440_25fps.mp4", + }, + { + name: "Meera S.", + role: "Designer", + company: "Creative Studio", + rating: 5, + videoSrc: "https://videos.pexels.com/video-files/3129671/3129671-uhd_2560_1440_25fps.mp4", + }, + { + name: "Rahul V.", + role: "Product Manager", + company: "Innovate Inc", + rating: 5, + videoSrc: "https://videos.pexels.com/video-files/3206323/3206323-uhd_2560_1440_25fps.mp4", + } + ]; + + return ( +
+
+
+ + + + + +

+ See how Codifya is helping teams build better and faster. +

+
+
+ +
+ {testimonials.map((testimonial, index) => ( + + +
+ +
+
+ +

{testimonial.name}

+

{testimonial.role} at {testimonial.company}

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