Update src/app/projects/page.tsx
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import Link from "next/link";
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
@@ -36,59 +34,19 @@ export default function ProjectsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="projects" data-section="projects">
|
<div id="projects" data-section="projects">
|
||||||
<BlogCardTwo
|
<FeatureCardMedia
|
||||||
title="Recent Projects"
|
title="Recent Projects"
|
||||||
description="Standing seam installs, repairs, cottages, camps, barns, and garages—done with a clean, premium finish."
|
description="Standing seam installs, repairs, cottages, camps, barns, and garages—done with a clean, premium finish."
|
||||||
blogs={[
|
tag="Our Work"
|
||||||
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "modern-home", title: "Modern Home Standing Seam Installation", description: "Clean lines and superior durability for a contemporary home renovation.", tag: "Residential", imageSrc: "https://img.b2bpic.net/free-photo/modern-house-architecture-navy-roof-wooden-soffit-blue-sky_626616-509.jpg?_wi=1"
|
||||||
category: ["Standing Seam", "Residential"],
|
|
||||||
title: "Modern Home Standing Seam Installation",
|
|
||||||
excerpt: "Clean lines and superior durability for a contemporary home renovation.",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/modern-house-architecture-navy-roof-wooden-soffit-blue-sky_626616-509.jpg?_wi=1",
|
|
||||||
authorName: "Martinez Team",
|
|
||||||
authorAvatar: "https://img.b2bpic.net/free-vector/construction_24908-53978.jpg",
|
|
||||||
date: "15 Jan 2025"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "barn-construction", title: "Custom Barn Exterior & Metal Roofing", description: "Complete structural and roofing upgrade with precision execution.", tag: "Construction", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-store-building-from-wood-stones-west-bloomfield-mi_181624-60264.jpg?_wi=3"
|
||||||
category: ["Repair", "Commercial"],
|
|
||||||
title: "Industrial Building Leak Diagnosis & Repair",
|
|
||||||
excerpt: "Fast fixes without cutting corners on a critical commercial project.",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/agricultural-silo_146671-19121.jpg",
|
|
||||||
authorName: "Martinez Team",
|
|
||||||
authorAvatar: "https://img.b2bpic.net/free-vector/construction_24908-53978.jpg",
|
|
||||||
date: "10 Jan 2025"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "garage-construction", title: "Premium Garage Construction", description: "Custom garage build with matching metal roofing and superior craftsmanship.", tag: "Residential", imageSrc: "https://img.b2bpic.net/free-photo/experts-check-warehouse-inventory_482257-75354.jpg?_wi=4"
|
||||||
category: ["Construction", "Barn"],
|
|
||||||
title: "Custom Barn Exterior & Metal Roofing",
|
|
||||||
excerpt: "Complete structural and roofing upgrade with precision execution.",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-store-building-from-wood-stones-west-bloomfield-mi_181624-60264.jpg?_wi=3",
|
|
||||||
authorName: "Martinez Team",
|
|
||||||
authorAvatar: "https://img.b2bpic.net/free-vector/construction_24908-53978.jpg",
|
|
||||||
date: "05 Jan 2025"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
category: ["Residential", "Garage"],
|
|
||||||
title: "Premium Garage Construction",
|
|
||||||
excerpt: "Custom garage build with matching metal roofing and superior craftsmanship.",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/experts-check-warehouse-inventory_482257-75354.jpg?_wi=4",
|
|
||||||
authorName: "Martinez Team",
|
|
||||||
authorAvatar: "https://img.b2bpic.net/free-vector/construction_24908-53978.jpg",
|
|
||||||
date: "28 Dec 2024"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
category: ["Standing Seam", "Cottage"],
|
|
||||||
title: "Lake Cottage Metal Roof Upgrade",
|
|
||||||
excerpt: "Weather-resistant standing seam installation for a seasonal cottage.",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/modern-house-architecture-navy-roof-wooden-soffit-blue-sky_626616-509.jpg?_wi=2",
|
|
||||||
authorName: "Martinez Team",
|
|
||||||
authorAvatar: "https://img.b2bpic.net/free-vector/construction_24908-53978.jpg",
|
|
||||||
date: "20 Dec 2024"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -97,43 +55,6 @@ export default function ProjectsPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="project-testimonials" data-section="project-testimonials">
|
|
||||||
<TestimonialCardThirteen
|
|
||||||
title="What Our Project Clients Say"
|
|
||||||
description="Real feedback from homeowners and businesses we've served."
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
name: "David Kim",
|
|
||||||
handle: "@homeowner_4",
|
|
||||||
testimonial: "No trace left behind—top notch work.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Jennifer Davis",
|
|
||||||
handle: "@homeowner_5",
|
|
||||||
testimonial: "Exceeded expectations on every level.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Robert Martinez",
|
|
||||||
handle: "@homeowner_6",
|
|
||||||
testimonial: "Best roofing contractor I've worked with.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
showRating={true}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="projects-cta" data-section="projects-cta">
|
<div id="projects-cta" data-section="projects-cta">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Inspired by what you see? Let's discuss your project and create something exceptional together."
|
text="Inspired by what you see? Let's discuss your project and create something exceptional together."
|
||||||
@@ -150,8 +71,7 @@ export default function ProjectsPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate",
|
title: "Navigate", items: [
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Metal Roofing", href: "/metal-roofing" },
|
{ label: "Metal Roofing", href: "/metal-roofing" },
|
||||||
{ label: "Construction", href: "/construction" },
|
{ label: "Construction", href: "/construction" },
|
||||||
@@ -159,23 +79,20 @@ export default function ProjectsPage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Contact", href: "/contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{ label: "Standing Seam Install", href: "/metal-roofing" },
|
{ label: "Standing Seam Install", href: "/metal-roofing" },
|
||||||
{ label: "Repairs & Replacement", href: "/metal-roofing" },
|
{ label: "Repairs & Replacement", href: "/metal-roofing" },
|
||||||
{ label: "Custom Projects", href: "/construction" }
|
{ label: "Custom Projects", href: "/construction" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Terms of Service", href: "#" }
|
{ label: "Terms of Service", href: "#" }
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user