Add src/app/portfolio/page.tsx

This commit is contained in:
2026-05-07 05:53:51 +00:00
parent aae2e83161
commit cfdc2742ac

View File

@@ -0,0 +1,32 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import ReactLenis from "lenis/react";
export default function PortfolioPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Services", id: "/#features" }, { name: "Projects", id: "/portfolio" }, { name: "Quote", id: "/pricing" }, { name: "Contact", id: "/#contact" }]}
brandName="DC Contracting"
/>
<FeatureCardTwentyFive
title="Our Projects"
description="A selection of our finest contracting work."
features={[]}
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
/>
<FooterMedia
logoText="DC Contracting"
columns={[{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] }, { title: "Support", items: [{ label: "Quote", href: "/pricing" }, { label: "Contact", href: "/#contact" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}