Update src/app/projects/page.tsx

This commit is contained in:
2026-05-21 07:43:15 +00:00
parent ab3d9ec541
commit 03bf3e39c1

View File

@@ -3,28 +3,42 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ProjectsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="RAGEC"
/>
<ProductCardTwo
title="Our Projects"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
/>
<FooterLogoReveal logoText="RAGEC" leftLink={{ text: "Policy" }} rightLink={{ text: "Terms" }} />
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="RAGEC"
/>
</div>
<div id="projects-section" data-section="projects-section">
<ProductCardFour
title="Our Projects"
description="Showcasing our recent infrastructure achievements."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "1", name: "Bridge Construction", price: "$5M", variant: "Infrastructure", imageSrc: "https://images.unsplash.com/photo-1545558014-86980f7f50e0?q=80&w=2070&auto=format&fit=crop" },
{ id: "2", name: "Tunnel Project", price: "$12M", variant: "Infrastructure", imageSrc: "https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop" },
{ id: "3", name: "Roadway Expansion", price: "$3M", variant: "Infrastructure", imageSrc: "https://images.unsplash.com/photo-1572044162444-ad60f1285dea?q=80&w=2070&auto=format&fit=crop" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal logoText="RAGEC" leftLink={{ text: "Policy" }} rightLink={{ text: "Terms" }} />
</div>
</ReactLenis>
</ThemeProvider>
);