Add src/app/achievements/page.tsx

This commit is contained in:
2026-04-20 14:01:04 +00:00
parent 9732ab0751
commit 4e8e08394d

View File

@@ -0,0 +1,45 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AchievementsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Achievements", id: "/achievements" },
{ name: "Contact", id: "/#contact" },
]}
brandName="NILEx"
/>
<div className="pt-24">
<MetricCardFourteen
title="Our Milestones"
tag="Growth"
metrics={[
{ id: "1", value: "500+", description: "Successful Shipments" },
{ id: "2", value: "150+", description: "Verified Global Partners" },
{ id: "3", value: "10+", description: "Years of Experience" },
{ id: "4", value: "98%", description: "Customer Satisfaction" }
]}
/>
</div>
<FooterBaseReveal
logoText="NILEx Supply Chain"
columns={[
{ title: "Company", items: [{ label: "About", href: "/#about" }, { label: "Services", href: "/#services" }, { label: "Achievements", href: "/achievements" }] },
{ title: "Legal (EN/AR)", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}