"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { Star } from 'lucide-react'; export default function TestimonialsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About Us", id: "/about" }, { name: "Products", id: "/products" }, { name: "Services", id: "/services" }, { name: "Blog", id: "/blog" }, { name: "Testimonials", id: "/testimonials" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "/contact" } ]; const footerColumns = [ { title: "Products", items: [ { label: "Risk Assessment", href: "/products" }, { label: "HSE Procedures", href: "/products" }, { label: "ISO Documentation", href: "/products" }, { label: "Digital Platforms", href: "/products" } ] }, { title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, { label: "Blog", href: "/blog" }, { label: "Contact Us", href: "/contact" } ] }, { title: "Support", items: [ { label: "FAQ", href: "/faq" }, { label: "WhatsApp", href: "https://wa.me/212638673530" }, { label: "Email", href: "mailto:nimadigital99@gmail.com" } ] } ]; return (
); }