Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a565b9c319 | |||
| da3a2e6b50 | |||
| 9e6999cf2d | |||
| 198c9ae762 | |||
| a4211989bb |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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: "#" },
|
||||
@@ -212,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"
|
||||
|
||||
@@ -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