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() {