From 0b7f2e268fbf643b8f571cfe33f481de76a63787 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 20:42:05 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 334 +++++++++++++++++++++-------------------------- 1 file changed, 150 insertions(+), 184 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 84e2efd..9dae7d2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,202 +2,168 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function HomePage() { + 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 ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); From 7de562e4169cf9415d4a569e6d16359dbdd8617f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 20:42:05 +0000 Subject: [PATCH 2/2] Update src/app/testimonials/page.tsx --- src/app/testimonials/page.tsx | 348 +++++++++------------------------- 1 file changed, 87 insertions(+), 261 deletions(-) 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 ( - + -
- -
+
+ +
-
- -
- -
- -
- - +
);