Add src/app/achievements/page.tsx
This commit is contained in:
45
src/app/achievements/page.tsx
Normal file
45
src/app/achievements/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user