diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index ed74d92..943f5eb 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -8,37 +8,29 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function ProjectsPage() { return ( @@ -131,59 +78,27 @@ export default function LandingPage() { title="Project Insights" description="Articles on recent project completions and engineering challenges." blogs={[ - { - id: "b1", - category: "Construction", - title: "Modernizing Bridge Infrastructure", - excerpt: "How we used steel to support regional connectivity.", - imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-arch-bridge_1127-2072.jpg", - authorName: "Engineer Team", - authorAvatar: "http://img.b2bpic.net/free-photo/male-builder-construction_7502-4920.jpg", - date: "2024-10-01", - }, - { - id: "b2", - category: "Industrial", - title: "Steel Factory Efficiency", - excerpt: "Optimizing production for quicker project turnover.", - imageSrc: "http://img.b2bpic.net/free-photo/experienced-worker-is-repairing-metal-parts-machine-tool-busy-factory_613910-5507.jpg", - authorName: "Operations Mgr", - authorAvatar: "http://img.b2bpic.net/free-photo/male-engineer-reading-documents-while-checking-quality-manufactured-steel-rood-industrial-building_637285-4075.jpg", - date: "2024-09-25", - }, + { id: "b1", category: "Construction", title: "Modernizing Bridge Infrastructure", excerpt: "How we used steel to support regional connectivity.", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-arch-bridge_1127-2072.jpg", authorName: "Engineer Team", authorAvatar: "http://img.b2bpic.net/free-photo/male-builder-construction_7502-4920.jpg", date: "2024-10-01" }, + { id: "b2", category: "Industrial", title: "Steel Factory Efficiency", excerpt: "Optimizing production for quicker project turnover.", imageSrc: "http://img.b2bpic.net/free-photo/experienced-worker-is-repairing-metal-parts-machine-tool-busy-factory_613910-5507.jpg", authorName: "Operations Mgr", authorAvatar: "http://img.b2bpic.net/free-photo/male-engineer-reading-documents-while-checking-quality-manufactured-steel-rood-industrial-building_637285-4075.jpg", date: "2024-09-25" }, ]} />