Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a565b9c319 | |||
| da3a2e6b50 | |||
| 9e6999cf2d | |||
| 198c9ae762 | |||
| a4211989bb | |||
| fda46eb5e0 | |||
| c87020529f | |||
| b4e1edf2b3 | |||
| 539ab4eb97 | |||
| fd836b3d45 | |||
| b67d855e17 | |||
| 7bcaad0237 | |||
| a5599fcdb1 | |||
| 33f2d4bb8d | |||
| 4f22fc2532 |
@@ -1,11 +1,10 @@
|
||||
"use client";
|
||||
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Sparkles } from 'lucide-react';
|
||||
import Link from 'next/link';
|
||||
import { Sparkles, Phone } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
@@ -18,27 +17,24 @@ export default function ContactPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Custom Decks", href: "/services" },
|
||||
{ label: "Siding Installation", href: "/services" },
|
||||
{ label: "Windows & Doors", href: "/services" },
|
||||
{ label: "Exterior Remodels", href: "/services" },
|
||||
title: "Services", items: [
|
||||
{ label: "Custom Decks", href: "/" },
|
||||
{ label: "Siding Installation", href: "/" },
|
||||
{ label: "Windows & Doors", href: "/" },
|
||||
{ label: "Exterior Remodels", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Process", href: "/" },
|
||||
{ label: "Portfolio", href: "/portfolio" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Our Process", href: "#process" },
|
||||
{ label: "Portfolio", href: "#portfolio" },
|
||||
{ label: "Contact", href: "#cta" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "Phone: (630) 555-0123", href: "tel:(630)555-0123" },
|
||||
title: "Connect", items: [
|
||||
{ label: "Phone: (630) 904-1537", href: "tel:(630)904-1537" },
|
||||
{ label: "Naperville, IL", href: "#" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
@@ -64,40 +60,36 @@ export default function ContactPage() {
|
||||
brandName="Designed Companies"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Start Your Project",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Start Your Project", href: "#cta"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactSplit
|
||||
tag="Let's Begin"
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get In Touch"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Home?"
|
||||
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."
|
||||
title="Contact Designed Companies"
|
||||
description="Phone: (630) 904-1537 | Ready to discuss your exterior remodeling project? Reach out today and let's turn your vision into reality."
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:(630)904-1537" },
|
||||
{ text: "Email Us", href: "mailto:hello@designedcompanies.com" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
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"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Request Consultation"
|
||||
termsText="We respect your privacy. Unsubscribe anytime."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/outdoor-with-circle-chair_1339-5465.jpg?_wi=8"
|
||||
imageAlt="Luxury outdoor entertainment space sunset"
|
||||
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"
|
||||
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling | Phone: (630) 904-1537"
|
||||
columns={footerColumns}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import Link from "next/link";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
@@ -40,7 +40,7 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Phone: (630) 555-0123", href: "tel:(630)555-0123" },
|
||||
{ label: "Phone: (630) 904-1537", href: "tel:(630)904-1537" },
|
||||
{ label: "Naperville, IL", href: "#" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
@@ -71,7 +71,7 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
<HeroBillboard
|
||||
title="Luxury Exterior Remodeling, Designed to Transform Your Home"
|
||||
description="Custom decks, siding, windows, gutters, cabanas, and exterior renovations crafted with premium workmanship, thoughtful design, and a process homeowners actually enjoy."
|
||||
tag="Design-Driven Transformation"
|
||||
@@ -83,15 +83,18 @@ export default function HomePage() {
|
||||
{ text: "See Our Work", href: "#portfolio" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmXCNbkHFfM2mO3QwmqrqGvJIL/uploaded-1773376601252-1ghkwlm9.jpg", imageAlt: "Luxury custom deck with premium outdoor living space"},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmXCNbkHFfM2mO3QwmqrqGvJIL/uploaded-1773376631557-fkuzkod8.jpg", imageAlt: "Stunning home exterior transformation project"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmXCNbkHFfM2mO3QwmqrqGvJIL/uploaded-1773376601252-1ghkwlm9.jpg"
|
||||
imageAlt="Luxury custom deck with premium outdoor living space"
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Trusted by homeowners who care"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280717.jpg", alt: "Sarah Johnson" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", alt: "Mike Johnson" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", alt: "Happy client" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-young-woman-with-arms-crossed-office_23-2148180659.jpg", alt: "Satisfied homeowner" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-handsome-man-living-room_329181-626.jpg", alt: "Client testimonial" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg", alt: "Another satisfied client" },
|
||||
]}
|
||||
avatarText="Trusted by homeowners who care"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -209,16 +212,16 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
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", imageAlt: "Initial consultation"},
|
||||
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?_wi=1", 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", imageAlt: "Design guidance phase"},
|
||||
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?_wi=1", 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", imageAlt: "Transparent proposal"},
|
||||
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?_wi=1", 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", imageAlt: "Exceptional execution"},
|
||||
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?_wi=1", imageAlt: "Exceptional execution"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -250,7 +253,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"
|
||||
@@ -262,7 +265,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"
|
||||
|
||||
@@ -24,22 +24,22 @@ export default function PortfolioPage() {
|
||||
{
|
||||
id: "2", name: "Exterior Siding Upgrade", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-clean-urban-environment_23-2149011425.jpg", 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", imageAlt: "Complete exterior renovation"},
|
||||
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?_wi=2", imageAlt: "Complete exterior renovation"},
|
||||
];
|
||||
|
||||
const processFeatures = [
|
||||
{
|
||||
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", imageAlt: "Initial consultation"},
|
||||
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?_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", imageAlt: "Design guidance phase"},
|
||||
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?_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", imageAlt: "Transparent proposal"},
|
||||
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?_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", imageAlt: "Exceptional execution"},
|
||||
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?_wi=3", imageAlt: "Exceptional execution"},
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -143,7 +143,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=1"
|
||||
imageAlt="Luxury outdoor entertainment space sunset"
|
||||
logoText="Designed Companies Inc."
|
||||
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"
|
||||
|
||||
@@ -20,13 +20,13 @@ export default function ServicesPage() {
|
||||
const servicesFeatures = [
|
||||
{
|
||||
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", imageAlt: "Custom Trex deck luxury residential"},
|
||||
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?_wi=3", 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", imageAlt: "Premium James Hardie siding installation"},
|
||||
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?_wi=3", 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", imageAlt: "Luxury window installation and upgrade"},
|
||||
title: "Windows", description: "Window installation that improves both appearance and performance.", imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-563.jpg?_wi=3", 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", imageAlt: "Premium gutter system exterior details"},
|
||||
@@ -150,7 +150,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=2"
|
||||
imageAlt="Luxury outdoor entertainment space sunset"
|
||||
logoText="Designed Companies Inc."
|
||||
copyrightText="© 2025 Designed Companies Inc. | Luxury Exterior Remodeling"
|
||||
|
||||
Reference in New Issue
Block a user