diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx index aee28bd..80ef23e 100644 --- a/src/app/testimonials/page.tsx +++ b/src/app/testimonials/page.tsx @@ -2,276 +2,102 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Smile, Star } from "lucide-react"; +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" } + ] + } + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
- -
- -
- - +
);