Update src/app/projects/page.tsx

This commit is contained in:
2026-04-08 06:12:02 +00:00
parent f1704008bb
commit 221a454308

View File

@@ -8,7 +8,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
import { Clock, ShieldCheck } from "lucide-react";
export default function LandingPage() {
export default function ProjectsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,18 +26,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Projects",
id: "/projects",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="A1 Roofmasters"
/>
@@ -47,48 +38,9 @@ export default function LandingPage() {
<ProductCatalog
layout="page"
products={[
{
id: "pc1",
name: "Roof Installation",
price: "Residential",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-3266.jpg?_wi=2",
},
{
id: "pc2",
name: "Roof Repair",
price: "Renovation",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/chinise-building_1417-1695.jpg?_wi=2",
},
{
id: "pc3",
name: "Flat Roof Replacement",
price: "Commercial",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/city-building-corner_23-2148107091.jpg?_wi=2",
},
{
id: "pc4",
name: "Shingle Replacement",
price: "Residential",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/architects-looking-plan-front-house_23-2147813107.jpg?_wi=2",
},
{
id: "pc5",
name: "Luxury Roof Work",
price: "Replacement",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/vertical-low-angle-closeup-shot-black-roof-building_181624-10654.jpg?_wi=2",
},
{
id: "pc6",
name: "Residential Repair",
price: "Residential",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-wearing-protection-helmet-outdoors_23-2149343635.jpg?_wi=2",
},
{ id: "pc1", name: "Roof Installation", price: "Residential", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-3266.jpg?_wi=2" },
{ id: "pc2", name: "Roof Repair", price: "Renovation", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/chinise-building_1417-1695.jpg?_wi=2" },
{ id: "pc3", name: "Flat Roof Replacement", price: "Commercial", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/city-building-corner_23-2148107091.jpg?_wi=2" },
]}
/>
</div>
@@ -101,16 +53,8 @@ export default function LandingPage() {
title="Quality Assurance"
description="Every project we undertake is backed by our promise of quality and durability."
features={[
{
icon: ShieldCheck,
title: "Licensed Professionals",
description: "All our team members are fully licensed.",
},
{
icon: Clock,
title: "On Time Delivery",
description: "We stick to our schedule.",
},
{ icon: ShieldCheck, title: "Licensed Professionals", description: "All our team members are fully licensed." },
{ icon: Clock, title: "On Time Delivery", description: "We stick to our schedule." },
]}
/>
</div>
@@ -118,38 +62,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Projects",
href: "/projects",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Sal: 631-620-2330",
href: "tel:631-620-2330",
},
{
label: "Rock: 631-539-1664",
href: "tel:631-539-1664",
},
{
label: "contact@a1roofmasters.com",
href: "mailto:contact@a1roofmasters.com",
},
],
},
{ items: [{ label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Sal: 631-620-2330", href: "tel:631-620-2330" }, { label: "Rock: 631-539-1664", href: "tel:631-539-1664" }, { label: "contact@a1roofmasters.com", href: "mailto:contact@a1roofmasters.com" }] },
]}
logoText="A1 Roofmasters"
/>
@@ -157,4 +71,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}