@@ -2,8 +2,6 @@ import React, { useState } from "react";
22import { Card , CardContent } from "@/components/ui/card" ;
33import { Star , Play , Image as ImageIcon , Camera } from "lucide-react" ;
44import Lightbox from "@/components/ui/lightbox" ;
5- import TestimonialImage1 from "@/testimonials/image1.jpg" ;
6- import TestimonialImage2 from "@/testimonials/image2.jpg" ;
75
86const TestimonialsSection = ( ) => {
97 const [ lightboxOpen , setLightboxOpen ] = useState ( false ) ;
@@ -20,8 +18,8 @@ const TestimonialsSection = () => {
2018 text : "The owner and staff are very good and share too much information about solar panel" ,
2119 rating : 5 ,
2220 gallery : [
23- { type : "image" as const , src : TestimonialImage1 , alt : "Solar panel installation" } ,
24- { type : "image" as const , src : TestimonialImage2 , alt : "Completed installation" } ,
21+ { type : "image" as const , src : "/testimonials/image1.jpg" , alt : "Solar panel installation" } ,
22+ { type : "image" as const , src : "/testimonials/image2.jpg" , alt : "Completed installation" } ,
2523 // { type: "video" as const, src: "/testimonials/video1.mp4", alt: "Completed installation" },
2624 ]
2725 } ,
0 commit comments