Update src/app/portfolio/page.tsx

This commit is contained in:
2026-03-26 12:52:17 +00:00
parent bae28d12e9
commit 094d795bdb

View File

@@ -62,14 +62,39 @@ export default function PortfolioPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay {...navbarProps} />
</div>
{/*
Due to an empty sectionRegistry, no sections can be rendered on this page.
This site will only display the Navbar and Footer.
*/}
<main className="min-h-[calc(10vh)] flex items-center justify-center">
<h1 className="text-3xl md:text-5xl font-bold text-center">Our Portfolio & News</h1>
<main className="min-h-[calc(100vh-16rem)] flex flex-col items-center justify-center p-8 bg-background">
<h1 className="text-4xl md:text-6xl font-bold text-center mb-8 text-foreground">Our Portfolio</h1>
<p className="text-lg text-center max-w-3xl text-foreground/80">
Explore a selection of our recent projects and client success stories.
</p>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-12 w-full max-w-6xl">
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Alpha</h3>
<p className="text-foreground/80">A cutting-edge web application for data visualization.</p>
</div>
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Beta</h3>
<p className="text-foreground/80">Mobile app development for a leading e-commerce brand.</p>
</div>
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Gamma</h3>
<p className="text-foreground/80">Enterprise-level CRM system integration and customization.</p>
</div>
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Delta</h3>
<p className="text-foreground/80">Cloud infrastructure migration and optimization.</p>
</div>
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Epsilon</h3>
<p className="text-foreground/80">AI-powered analytics platform development.</p>
</div>
<div className="bg-card p-6 rounded-lg shadow-lg border border-accent">
<h3 className="text-xl font-semibold mb-2 text-foreground">Project Zeta</h3>
<p className="text-foreground/80">Custom blockchain solution for secure transactions.</p>
</div>
</div>
</main>
<Footer brandName="Nexsoft Australia" navItems={navItems} />
</ThemeProvider>
);
}
}