- {reviews.slice(0, 4).map((testimonial, idx) => (
+
+
+ {testimonials.map((testimonial, idx) => (
-
-
-
- {Array.from({ length: 5 }).map((_, i) => (
-
{i < testimonial.rating ? '★' : '☆'}
- ))}
+
+
+
+ {[...Array(5)].map((_, i) => (
+
+ ))}
+
+
"{testimonial.quote}"
-
"{testimonial.quote}"
-
-
{testimonial.name}
-
{testimonial.role}
+
+
+ {testimonial.name.charAt(0)}
+
+
+
{testimonial.name}
+
{testimonial.role}
+
))}
-
-)};
-
-export default function TestimonialsSection() {
- return (
-
-
-
);
}
+
+export default TestimonialsInline;
\ No newline at end of file
diff --git a/src/pages/HomePage/sections/WelcomeLoader.tsx b/src/pages/HomePage/sections/WelcomeLoader.tsx
new file mode 100644
index 0000000..b9cd04b
--- /dev/null
+++ b/src/pages/HomePage/sections/WelcomeLoader.tsx
@@ -0,0 +1,12 @@
+import LoaderReveal from "@/components/ui/LoaderReveal";
+
+export default function WelcomeLoaderSection() {
+ return (
+
+
+
+ );
+}
\ No newline at end of file