From a814ee1e58ef715883fbd0af82b36b3e295dac68 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:25:47 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 66 ++++++++++++------------------------------ 1 file changed, 19 insertions(+), 47 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9bb9db4..7a8e7d0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -13,32 +13,29 @@ export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Services", id: "services" }, - { name: "Projects", id: "projects" }, - { name: "Contact", id: "contact" }, + { name: "Services", id: "/services" }, + { name: "Projects", id: "/projects" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Services", href: "services" }, - { label: "Portfolio", href: "projects" }, + { 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: "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: [ + 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: "#" }, @@ -90,32 +87,16 @@ export default function AboutPage() { features={[ { id: 1, - title: "Quality Craftsmanship", - description: "Every project reflects our dedication to superior workmanship, attention to detail, and use of premium materials that stand the test of time.", - imageSrc: "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=2", - imageAlt: "skilled construction craftsmanship", - }, + title: "Quality Craftsmanship", description: "Every project reflects our dedication to superior workmanship, attention to detail, and use of premium materials that stand the test of time.", imageSrc: "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=2", imageAlt: "skilled construction craftsmanship"}, { id: 2, - title: "Client-Centric Approach", - description: "We prioritize understanding your vision, maintaining transparent communication, and delivering results that exceed your expectations every time.", - imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=2", - imageAlt: "collaborative client meetings", - }, + title: "Client-Centric Approach", description: "We prioritize understanding your vision, maintaining transparent communication, and delivering results that exceed your expectations every time.", imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=2", imageAlt: "collaborative client meetings"}, { id: 3, - title: "Sustainable Innovation", - description: "We embrace modern building techniques and energy-efficient solutions to create spaces that are both beautiful and environmentally responsible.", - imageSrc: "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=2", - imageAlt: "sustainable green building practices", - }, + title: "Sustainable Innovation", description: "We embrace modern building techniques and energy-efficient solutions to create spaces that are both beautiful and environmentally responsible.", imageSrc: "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=2", imageAlt: "sustainable green building practices"}, { id: 4, - title: "Proven Reliability", - description: "With 500+ completed projects and 98% client satisfaction, our track record speaks to our reliability and commitment to project success.", - imageSrc: "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=2", - imageAlt: "completed construction projects", - }, + title: "Proven Reliability", description: "With 500+ completed projects and 98% client satisfaction, our track record speaks to our reliability and commitment to project success.", imageSrc: "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=2", imageAlt: "completed construction projects"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -126,22 +107,13 @@ export default function AboutPage() { Date: Sun, 8 Mar 2026 23:25:47 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8e5da8d..c9e65a5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -17,16 +17,14 @@ export default function ContactPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Services", href: "/services" }, { label: "Portfolio", href: "/projects" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "General Contracting", href: "/services" }, { label: "Exterior Restorations", href: "/services" }, { label: "Energy Upgrades", href: "/services" }, @@ -34,8 +32,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + 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: "#" }, -- 2.49.1 From c393cc561987ef20f97429f6f24fb89edfd9c851 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:25:47 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 110 +++++++++++------------------------------------ 1 file changed, 26 insertions(+), 84 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f6f4f3d..be9394f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,32 +16,29 @@ export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Services", id: "services" }, - { name: "Projects", id: "projects" }, - { name: "Contact", id: "contact" }, + { name: "Services", id: "/services" }, + { name: "Projects", id: "/projects" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Services", href: "services" }, - { label: "Portfolio", href: "projects" }, + { 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: "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: [ + 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: "#" }, @@ -81,17 +78,11 @@ export default function HomePage() { ]} slides={[ { - imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-tower-crane-apartments-urban-modern-architecture_169016-69092.jpg", - imageAlt: "Modern residential construction", - }, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgOT4hEP92v0HRAH1gxSdj0hBl/uploaded-1773012272691-p0w9hxj1.png", imageAlt: "Schuit General logo"}, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-construction_23-2148751990.jpg", - imageAlt: "exterior restoration building facade renovation", - }, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-construction_23-2148751990.jpg", imageAlt: "exterior restoration building facade renovation"}, { - imageSrc: "http://img.b2bpic.net/free-photo/financial-independent-woman-buying-new-house_23-2149571924.jpg", - imageAlt: "cottage renovation exterior improvement", - }, + imageSrc: "http://img.b2bpic.net/free-photo/financial-independent-woman-buying-new-house_23-2149571924.jpg", imageAlt: "cottage renovation exterior improvement"}, ]} autoplayDelay={5000} showDimOverlay={true} @@ -106,32 +97,16 @@ export default function HomePage() { features={[ { id: 1, - title: "General Contracting", - description: "Full-service project management from residential homes to mid-rise buildings. We handle every phase with precision and accountability.", - imageSrc: "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=1", - imageAlt: "construction project management team planning", - }, + title: "General Contracting", description: "Full-service project management from residential homes to mid-rise buildings. We handle every phase with precision and accountability.", imageSrc: "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=1", imageAlt: "construction project management team planning"}, { id: 2, - title: "Exterior Restorations", - description: "Expert restoration of building facades, siding, and exterior elements. We specialize in preserving architectural character while modernizing performance.", - imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=1", - imageAlt: "exterior facade restoration workers", - }, + title: "Exterior Restorations", description: "Expert restoration of building facades, siding, and exterior elements. We specialize in preserving architectural character while modernizing performance.", imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=1", imageAlt: "exterior facade restoration workers"}, { id: 3, - title: "Energy-Efficient Upgrades", - description: "Advanced building envelope improvements and energy solutions. Reduce operating costs while improving comfort and sustainability.", - imageSrc: "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=1", - imageAlt: "energy efficient building upgrades installation", - }, + title: "Energy-Efficient Upgrades", description: "Advanced building envelope improvements and energy solutions. Reduce operating costs while improving comfort and sustainability.", imageSrc: "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=1", imageAlt: "energy efficient building upgrades installation"}, { id: 4, - title: "Cottage & Renovation", - description: "Specialized cottage construction and renovation expertise. We understand seasonal challenges and heritage considerations unique to cottage properties.", - imageSrc: "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=1", - imageAlt: "cottage renovation rural property improvement", - }, + title: "Cottage & Renovation", description: "Specialized cottage construction and renovation expertise. We understand seasonal challenges and heritage considerations unique to cottage properties.", imageSrc: "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=1", imageAlt: "cottage renovation rural property improvement"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -156,37 +131,13 @@ export default function HomePage() { Date: Sun, 8 Mar 2026 23:25:48 +0000 Subject: [PATCH 4/5] Update src/app/projects/page.tsx --- src/app/projects/page.tsx | 97 ++++++++++----------------------------- 1 file changed, 23 insertions(+), 74 deletions(-) diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 933469b..06e15dc 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -18,16 +18,14 @@ export default function ProjectsPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Services", href: "/services" }, { label: "Portfolio", href: "/projects" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "General Contracting", href: "/services" }, { label: "Exterior Restorations", href: "/services" }, { label: "Energy Upgrades", href: "/services" }, @@ -35,8 +33,7 @@ export default function ProjectsPage() { ], }, { - title: "Contact", - items: [ + 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: "#" }, @@ -70,41 +67,17 @@ export default function ProjectsPage() { Date: Sun, 8 Mar 2026 23:25:48 +0000 Subject: [PATCH 5/5] Update src/app/services/page.tsx --- src/app/services/page.tsx | 72 +++++++++++---------------------------- 1 file changed, 20 insertions(+), 52 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 70541b7..3e3dd08 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -18,16 +18,14 @@ export default function ServicesPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Services", href: "/services" }, { label: "Portfolio", href: "/projects" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "General Contracting", href: "/services" }, { label: "Exterior Restorations", href: "/services" }, { label: "Energy Upgrades", href: "/services" }, @@ -35,8 +33,7 @@ export default function ServicesPage() { ], }, { - title: "Contact", - items: [ + 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: "#" }, @@ -71,40 +68,24 @@ export default function ServicesPage() { features={[ { id: 1, - title: "General Contracting", - description: - "Full-service project management from residential homes to mid-rise buildings. We handle every phase with precision and accountability.", - imageSrc: - "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=3", - imageAlt: "construction project management team planning", - }, + title: "General Contracting", description: + "Full-service project management from residential homes to mid-rise buildings. We handle every phase with precision and accountability.", imageSrc: + "http://img.b2bpic.net/free-photo/indian-man-working-male-yellow-vest-man-with-folder_1157-47547.jpg?_wi=3", imageAlt: "construction project management team planning"}, { id: 2, - title: "Exterior Restorations", - description: - "Expert restoration of building facades, siding, and exterior elements. We specialize in preserving architectural character while modernizing performance.", - imageSrc: - "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=3", - imageAlt: "exterior facade restoration workers", - }, + title: "Exterior Restorations", description: + "Expert restoration of building facades, siding, and exterior elements. We specialize in preserving architectural character while modernizing performance.", imageSrc: + "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=3", imageAlt: "exterior facade restoration workers"}, { id: 3, - title: "Energy-Efficient Upgrades", - description: - "Advanced building envelope improvements and energy solutions. Reduce operating costs while improving comfort and sustainability.", - imageSrc: - "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=3", - imageAlt: "energy efficient building upgrades installation", - }, + title: "Energy-Efficient Upgrades", description: + "Advanced building envelope improvements and energy solutions. Reduce operating costs while improving comfort and sustainability.", imageSrc: + "http://img.b2bpic.net/free-photo/green-architectural-city-buildings_23-2149554114.jpg?_wi=3", imageAlt: "energy efficient building upgrades installation"}, { id: 4, - title: "Cottage & Renovation", - description: - "Specialized cottage construction and renovation expertise. We understand seasonal challenges and heritage considerations unique to cottage properties.", - imageSrc: - "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=3", - imageAlt: "cottage renovation rural property improvement", - }, + title: "Cottage & Renovation", description: + "Specialized cottage construction and renovation expertise. We understand seasonal challenges and heritage considerations unique to cottage properties.", imageSrc: + "http://img.b2bpic.net/free-photo/lake-o-hara-yoho-national-park-with-waterfront-carbin_649448-2559.jpg?_wi=3", imageAlt: "cottage renovation rural property improvement"}, ]} title="Our Services" description="Schuit General delivers comprehensive contracting solutions tailored to your project needs. From concept to completion, we combine expertise with quality craftsmanship." @@ -118,28 +99,15 @@ export default function ServicesPage() {