Update src/app/projects/page.tsx

This commit is contained in:
2026-04-07 22:10:44 +00:00
parent 011583bfbe
commit 61ba8fe4fe

View File

@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
export default function LandingPage() {
export default function ProjectsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -25,26 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Projects",
id: "/projects",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="OZECH"
/>
@@ -58,18 +43,8 @@ export default function LandingPage() {
title="Portfolio Highlights"
description="Showcasing recent accomplishments."
features={[
{
id: "pr1",
title: "Nsukka Civic Center",
description: "Foundation work.",
imageSrc: "http://img.b2bpic.net/free-photo/heavy-machines-construction-workers-working-building_181624-8234.jpg?_wi=6",
},
{
id: "pr2",
title: "UNN Staff Quarters",
description: "Structural design.",
imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-notepad-plans_23-2147813132.jpg?_wi=7",
},
{ id: "pr1", tag: "Completed", title: "Nsukka Civic Center", description: "Foundation work.", imageSrc: "http://img.b2bpic.net/free-photo/heavy-machines-construction-workers-working-building_181624-8234.jpg" },
{ id: "pr2", tag: "In Progress", title: "UNN Staff Quarters", description: "Structural design.", imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-notepad-plans_23-2147813132.jpg" },
]}
/>
</div>
@@ -83,91 +58,20 @@ export default function LandingPage() {
title="Project Leads"
description="The teams that make it happen."
members={[
{
id: "tl1",
name: "Project Lead A",
role: "Coordinator",
imageSrc: "http://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg?_wi=9",
},
{
id: "tl2",
name: "Project Lead B",
role: "Coordinator",
imageSrc: "http://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg?_wi=10",
},
{ id: "tl1", name: "Project Lead A", role: "Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg" },
{ id: "tl2", name: "Project Lead B", role: "Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Projects",
href: "/projects",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Building Construction",
href: "/services",
},
{
label: "Structural Design",
href: "/services",
},
{
label: "Site Prep",
href: "/services",
},
{
label: "Foundation Works",
href: "/services",
},
{
label: "Project Management",
href: "/services",
},
],
},
{
items: [
{
label: "📞 0808 157 8298",
href: "tel:08081578298",
},
{
label: "📧 ozechengineeringlimited@gmail.com",
href: "mailto:ozechengineeringlimited@gmail.com",
},
{
label: "📍 Nsukka, Enugu State",
href: "#",
},
],
},
]}
logoText="OZECH ENGINEERING LIMITED"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Projects", href: "/projects" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Building Construction", href: "/services" }, { label: "Structural Design", href: "/services" }, { label: "Site Prep", href: "/services" }, { label: "Foundation Works", href: "/services" }, { label: "Project Management", href: "/services" }] },
{ items: [{ label: "📞 0808 157 8298", href: "tel:08081578298" }, { label: "📧 ozechengineeringlimited@gmail.com", href: "mailto:ozechengineeringlimited@gmail.com" }, { label: "📍 Nsukka, Enugu State", href: "#" }] }
]}
/>
</div>
</ReactLenis>