Files
8f9a190d-628d-4890-b5ee-814…/src/app/projects/page.tsx

144 lines
7.1 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function ProjectsPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Portfolio", href: "/projects" },
],
},
{
title: "Services", items: [
{ label: "General Contracting", href: "/services" },
{ label: "Exterior Restorations", href: "/services" },
{ label: "Energy Upgrades", href: "/services" },
{ label: "Cottage Renovation", href: "/services" },
],
},
{
title: "Contact", items: [
{ label: "Email: hello@schuitgeneral.com", href: "mailto:hello@schuitgeneral.com" },
{ label: "Phone: 905-638-4803", href: "tel:905-638-4803" },
{ label: "Ontario, Canada", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSmallSizeLargeTitles"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName=""
bottomLeftText="Ontario, Canada"
bottomRightText="hello@schuitgeneral.com"
/>
</div>
<div id="projects" data-section="projects">
<ProductCardFour
products={[
{
id: "project-1", name: "Burlington Residence - Full Renovation", price: "Completed 2023", variant: "Modern Exterior Restoration", imageSrc:
"http://img.b2bpic.net/free-vector/traditional-mexican-house-windows_1308-175657.jpg?_wi=2", imageAlt: "Burlington residence exterior"},
{
id: "project-2", name: "Muskoka Cottage - Energy Upgrade", price: "Completed 2023", variant: "Sustainable Renovation", imageSrc:
"http://img.b2bpic.net/free-photo/friends-watching-sunset-lake-sunset-walking-nature-pier-berth_169016-67652.jpg?_wi=2", imageAlt: "Muskoka cottage project"},
{
id: "project-3", name: "Downtown Office Building - Mid-Rise", price: "Completed 2022", variant: "Commercial Construction", imageSrc:
"http://img.b2bpic.net/free-photo/design-building-with-opened-windows_23-2148252778.jpg?_wi=2", imageAlt: "Downtown office building"},
{
id: "project-4", name: "Heritage Facade Restoration", price: "Completed 2022", variant: "Historic Preservation", imageSrc:
"http://img.b2bpic.net/free-photo/young-male-models-posing-outdoor-stairs_23-2148289233.jpg?_wi=2", imageAlt: "Heritage building restoration"},
]}
title="Featured Projects"
description="Discover our portfolio of completed projects showcasing diverse expertise in residential, commercial, and specialized construction."
tag="Our Work"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "Sarah Thompson", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg?_wi=2", imageAlt: "professional woman portrait business headshot"},
{
id: "2", name: "Michael Garrison", imageSrc:
"http://img.b2bpic.net/free-photo/young-hispanic-man-standing-with-serious-expression-street_839833-28129.jpg?_wi=2", imageAlt: "professional man portrait business headshot"},
{
id: "3", name: "Jennifer Chen", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-gorgeous-stylish-asian-girl-coat-happily-looking-camera-outdoor_574295-2055.jpg?_wi=2", imageAlt: "asian woman professional portrait headshot"},
{
id: "4", name: "David Porter", imageSrc:
"http://img.b2bpic.net/free-photo/middle-aged-business-man-hard-hat_1303-23575.jpg?_wi=2", imageAlt: "male professional business portrait headshot"},
{
id: "5", name: "Lisa Marchand", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-young-business-lady_1163-3171.jpg?_wi=2", imageAlt: "professional woman business headshot portrait"},
{
id: "6", name: "Robert Walsh", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-attractive-dark-skinned-student-wearing-checkered-shirt-with-confident-joyful-expression-standing-chalkboard-wall_273609-5907.jpg?_wi=2", imageAlt: "senior man professional portrait headshot"},
]}
cardTitle="Trusted by homeowners, property managers, and developers across Ontario"
cardTag="Client Testimonials"
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Build?"
title="Let's Bring Your Project to Life"
description="Contact Schuit General today to discuss your construction or renovation project. Our team is ready to deliver excellence."
buttons={[
{ text: "Request a Quote", href: "/contact" },
{ text: "Call: 905-638-4803", href: "tel:905-638-4803" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={footerColumns}
logoText="Schuit General"
copyrightText="© 2025 Schuit General. All rights reserved. Division of Burlington SCI."
/>
</div>
</ThemeProvider>
);
}