Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 03:22:17 +00:00
6 changed files with 86 additions and 46 deletions

View File

@@ -98,21 +98,21 @@ export default function AboutPage() {
id: 1,
title: "Founded on Excellence",
description: "We started with a simple mission: bring luxury design and premium craftsmanship to exterior home improvement. Every project since has honored that commitment.",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg?_wi=3",
imageAlt: "Luxury outdoor living design",
},
{
id: 2,
title: "Design-Driven Approach",
description: "We don't just build—we collaborate. Our team listens, suggests, and refines until every detail reflects your vision and our high standards.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg?_wi=3",
imageAlt: "Design consultation process",
},
{
id: 3,
title: "Client-Centric Service",
description: "From the first consultation to final walkthrough, transparency and respect guide every interaction. We're here to make the remodeling experience enjoyable, not stressful.",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=3",
imageAlt: "Professional client service",
},
]}
@@ -146,7 +146,7 @@ export default function AboutPage() {
description="Schedule a consultation to discuss your vision. We'll listen, suggest, and create a plan that transforms your home with premium craftsmanship and thoughtful design."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=3"
imageAlt="Luxury outdoor consultation space"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -158,7 +158,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=4"
imageAlt="Luxury outdoor entertaining space"
logoText="Designed Companies Inc."
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"

View File

@@ -79,7 +79,7 @@ export default function ContactPage() {
description="Whether you are planning a custom deck, new siding, windows, gutters, or a full exterior refresh, Designed Companies brings the ideas, craftsmanship, and professionalism to make it happen beautifully."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=7"
imageAlt="Luxury outdoor space"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -91,7 +91,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=8"
imageAlt="Luxury outdoor entertainment space sunset"
logoText="Designed Companies Inc."
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"

View File

@@ -1,24 +1,62 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Luxury Exterior Remodeling | Designed Companies Inc.",
description: "Premium custom decks, siding, windows, and exterior transformations by Designed Companies. Design-forward, professional execution, and exceptional craftsmanship.",
keywords: "custom decks, luxury siding, exterior remodeling, home transformation, Naperville",
metadataBase: new URL("https://designedcompanies.com"),
alternates: {
canonical: "https://designedcompanies.com",
},
openGraph: {
title: "Luxury Exterior Remodeling | Designed Companies Inc.",
description: "Transform your home with premium custom decks, siding, and exterior renovations.",
siteName: "Designed Companies Inc.",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-looking-smiling-young-woman-sitting-rooftop_23-2147891092.jpg",
alt: "luxury custom deck outdoor living space",
},
],
},
twitter: {
card: "summary_large_image",
title: "Luxury Exterior Remodeling | Designed Companies Inc.",
description: "Premium custom decks, siding, and home transformations.",
images: [
"http://img.b2bpic.net/free-photo/man-looking-smiling-young-woman-sitting-rooftop_23-2147891092.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -94,7 +94,7 @@ export default function HomePage() {
imageAlt: "Luxury custom deck with premium outdoor living space",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg?_wi=1",
imageAlt: "Stunning home exterior transformation project",
},
]}
@@ -131,42 +131,42 @@ export default function HomePage() {
id: 1,
title: "Custom Decks",
description: "Trex and custom deck builds designed for beauty, comfort, durability, and everyday use.",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg?_wi=1",
imageAlt: "Custom Trex deck luxury residential",
},
{
id: 2,
title: "Siding Installation",
description: "High-end siding upgrades including James Hardie and other premium materials that completely refresh the look of the home.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg?_wi=1",
imageAlt: "Premium James Hardie siding installation",
},
{
id: 3,
title: "Windows",
description: "Window installation that improves both appearance and performance.",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=1",
imageAlt: "Luxury window installation and upgrade",
},
{
id: 4,
title: "Gutters & Exterior Details",
description: "Functional exterior upgrades that complete the look and protect the home.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-style-house-exterior-with-terrace_114579-2229.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-style-house-exterior-with-terrace_114579-2229.jpg?_wi=1",
imageAlt: "Premium gutter system exterior details",
},
{
id: 5,
title: "Cabana & Outdoor Structures",
description: "Refined outdoor living additions built with smart design and strong craftsmanship.",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=1",
imageAlt: "Luxury outdoor cabana structure",
},
{
id: 6,
title: "Exterior Remodels",
description: "From painted brick and column updates to full curb appeal transformations.",
imageSrc: "http://img.b2bpic.net/free-photo/view-romantic-interracial-couple-hold-hands-walk-rural-setting_273609-18073.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-romantic-interracial-couple-hold-hands-walk-rural-setting_273609-18073.jpg?_wi=1",
imageAlt: "Complete exterior home transformation",
},
]}
@@ -222,21 +222,21 @@ export default function HomePage() {
id: "1",
name: "Premium Deck Installation",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/wooden-fall-with-cement-base_1136-76.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wooden-fall-with-cement-base_1136-76.jpg?_wi=1",
imageAlt: "Luxury custom deck project",
},
{
id: "2",
name: "Exterior Siding Upgrade",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-clean-urban-environment_23-2149011425.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-clean-urban-environment_23-2149011425.jpg?_wi=1",
imageAlt: "Premium siding transformation",
},
{
id: "3",
name: "Full Home Transformation",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg?_wi=2",
imageAlt: "Complete exterior renovation",
},
]}
@@ -260,28 +260,28 @@ export default function HomePage() {
id: 1,
title: "Consultation",
description: "We learn what you want, what is not working, and what the home needs. Design-minded listening and discovery.",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg?_wi=2",
imageAlt: "Initial consultation",
},
{
id: 2,
title: "Design Guidance",
description: "We bring ideas, practical suggestions, and material direction to shape the best outcome for your vision.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg?_wi=2",
imageAlt: "Design guidance phase",
},
{
id: 3,
title: "Clear Proposal",
description: "Straightforward pricing, no weird surprises, and a defined project scope you can trust.",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=2",
imageAlt: "Transparent proposal",
},
{
id: 4,
title: "Build & Transform",
description: "Fast, clean, high-quality execution with respect for your home and your time. Results that exceed expectations.",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg?_wi=3",
imageAlt: "Exceptional execution",
},
]}
@@ -315,7 +315,7 @@ export default function HomePage() {
description="Whether you are planning a custom deck, new siding, windows, gutters, or a full exterior refresh, Designed Companies brings the ideas, craftsmanship, and professionalism to make it happen beautifully."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=1"
imageAlt="Luxury outdoor space"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -327,7 +327,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=2"
imageAlt="Luxury outdoor entertaining space"
logoText="Designed Companies Inc."
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"

View File

@@ -23,21 +23,21 @@ export default function PortfolioPage() {
id: "1",
name: "Premium Deck Installation",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/wooden-fall-with-cement-base_1136-76.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wooden-fall-with-cement-base_1136-76.jpg?_wi=2",
imageAlt: "Luxury custom deck project",
},
{
id: "2",
name: "Exterior Siding Upgrade",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-clean-urban-environment_23-2149011425.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-clean-urban-environment_23-2149011425.jpg?_wi=2",
imageAlt: "Premium siding transformation",
},
{
id: "3",
name: "Full Home Transformation",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg?_wi=4",
imageAlt: "Complete exterior renovation",
},
];
@@ -47,28 +47,28 @@ export default function PortfolioPage() {
id: "1",
title: "Consultation",
description: "We learn what you want, what is not working, and what the home needs. Design-minded listening and discovery.",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg?_wi=5",
imageAlt: "Initial consultation",
},
{
id: "2",
title: "Design Guidance",
description: "We bring ideas, practical suggestions, and material direction to shape the best outcome for your vision.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg?_wi=5",
imageAlt: "Design guidance phase",
},
{
id: "3",
title: "Clear Proposal",
description: "Straightforward pricing, no weird surprises, and a defined project scope you can trust.",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=5",
imageAlt: "Transparent proposal",
},
{
id: "4",
title: "Build & Transform",
description: "Fast, clean, high-quality execution with respect for your home and your time. Results that exceed expectations.",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-talking-phone-modern-office_23-2147668799.jpg?_wi=5",
imageAlt: "Exceptional execution",
},
];
@@ -185,7 +185,7 @@ export default function PortfolioPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=6"
imageAlt="Luxury outdoor entertainment space sunset"
logoText="Designed Companies Inc."
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"

View File

@@ -22,42 +22,42 @@ export default function ServicesPage() {
id: "1",
title: "Custom Decks",
description: "Trex and custom deck builds designed for beauty, comfort, durability, and everyday use.",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hammocks-placed-row_1203-1183.jpg?_wi=4",
imageAlt: "Custom Trex deck luxury residential",
},
{
id: "2",
title: "Siding Installation",
description: "High-end siding upgrades including James Hardie and other premium materials that completely refresh the look of the home.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290153.jpg?_wi=4",
imageAlt: "Premium James Hardie siding installation",
},
{
id: "3",
title: "Windows",
description: "Window installation that improves both appearance and performance.",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=4",
imageAlt: "Luxury window installation and upgrade",
},
{
id: "4",
title: "Gutters & Exterior Details",
description: "Functional exterior upgrades that complete the look and protect the home.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-style-house-exterior-with-terrace_114579-2229.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-style-house-exterior-with-terrace_114579-2229.jpg?_wi=2",
imageAlt: "Premium gutter system exterior details",
},
{
id: "5",
title: "Cabana & Outdoor Structures",
description: "Refined outdoor living additions built with smart design and strong craftsmanship.",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=2",
imageAlt: "Luxury outdoor cabana structure",
},
{
id: "6",
title: "Exterior Remodels",
description: "From painted brick and column updates to full curb appeal transformations.",
imageSrc: "http://img.b2bpic.net/free-photo/view-romantic-interracial-couple-hold-hands-walk-rural-setting_273609-18073.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-romantic-interracial-couple-hold-hands-walk-rural-setting_273609-18073.jpg?_wi=2",
imageAlt: "Complete exterior home transformation",
},
];
@@ -195,7 +195,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg"
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=5"
imageAlt="Luxury outdoor entertainment space sunset"
logoText="Designed Companies Inc."
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"