Add src/app/results/page.tsx

This commit is contained in:
2026-04-07 20:15:03 +00:00
parent 160dd79bc7
commit 5b6446d355

33
src/app/results/page.tsx Normal file
View File

@@ -0,0 +1,33 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Globe, Headphones, Server, TrendingUp } from "lucide-react";
export default function ResultsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Results", id: "/results" }, { name: "Testimonials", id: "/testimonials" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "/contact" }]}
brandName="Nexus Digital"
/>
<MetricCardOne
animationType="slide-up"
gridVariant="uniform-all-items-equal"
metrics={[
{ id: "m1", value: "150+", title: "Websites", description: "Launched", icon: Globe },
{ id: "m2", value: "99.9%", title: "Uptime", description: "Reliable", icon: Server },
{ id: "m3", value: "45%", title: "Growth", description: "Average", icon: TrendingUp },
{ id: "m4", value: "24/7", title: "Support", description: "Always", icon: Headphones },
]}
title="Our Impact"
/>
<FooterBaseCard logoText="Nexus Digital" columns={[{ title: "Links", items: [{ label: "Back to Home", href: "/" }] }]} />
</ReactLenis>
</ThemeProvider>
);
}