Merge version_2 into main #4
@@ -1,74 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Housing Hues | Scale Your Local Business Into a National Brand",
|
||||
description: "Transform your local business into a national brand with Housing Hues. Growth strategy, marketing systems, and operational scaling for 150+ successful businesses.",
|
||||
keywords: "business growth agency, local business scaling, growth strategy, franchise consulting, business systems, marketing agency",
|
||||
metadataBase: new URL("https://housinghues.com"),
|
||||
alternates: {
|
||||
canonical: "https://housinghues.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Housing Hues | Scale Your Local Business Into a National Brand",
|
||||
description: "Transform your local business into a national brand. Proven growth strategy and scaling systems.",
|
||||
url: "https://housinghues.com",
|
||||
siteName: "Housing Hues",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg",
|
||||
alt: "Housing Hues Growth Agency",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Housing Hues | Scale Your Local Business Into a National Brand",
|
||||
description: "Transform your local business into a national brand with proven growth strategy and systems.",
|
||||
images: ["http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Housing Hues | Local Business Growth Specialists", description: "Transform your local business into a national brand with Housing Hues. Proven growth strategy, marketing systems, and operational scaling for 150+ successful businesses."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${inter.variable}`}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1436,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -11,14 +11,14 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import { Rocket, Gift, TrendingUp } from "lucide-react";
|
||||
import { Rocket, Gift, TrendingUp, Check } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Why Us", id: "#why-us" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#lead-capture" },
|
||||
];
|
||||
|
||||
@@ -26,13 +26,13 @@ export default function HomePage() {
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About", href: "#why-us" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Why Us", href: "#why-us" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Case Studies", href: "/case-studies" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Contact", href: "#lead-capture" },
|
||||
{ label: "Blog", href: "#" },
|
||||
],
|
||||
@@ -46,8 +46,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email: hello@housinghues.com", href: "mailto:hello@housinghues.com" },
|
||||
{ label: "Phone: +27 (11) 123-4567", href: "tel:+27111234567" },
|
||||
{ label: "Email: hello@housinghues.co.za", href: "mailto:hello@housinghues.co.za" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
],
|
||||
},
|
||||
@@ -70,7 +70,7 @@ export default function HomePage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Book Free Call", href: "/services"}}
|
||||
text: "Book Free Call", href: "#lead-capture"}}
|
||||
brandName="Housing Hues"
|
||||
/>
|
||||
</div>
|
||||
@@ -86,9 +86,9 @@ export default function HomePage() {
|
||||
variant: "sparkles-gradient"}}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Free Growth Call", href: "/services"},
|
||||
text: "Book a Free Growth Call", href: "#lead-capture"},
|
||||
{
|
||||
text: "Call Now: (555) 123-4567", onClick: () => window.location.href = "tel:+15551234567"},
|
||||
text: "Call Now: +27 (11) 123-4567", onClick: () => window.location.href = "tel:+27111234567"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg?_wi=1"
|
||||
@@ -102,7 +102,7 @@ export default function HomePage() {
|
||||
tag="Trusted Partners"
|
||||
tagAnimation="slide-up"
|
||||
title="150+ Local Businesses Scaled"
|
||||
description="We've helped businesses across construction, restaurants, retail, healthcare, and home services achieve national growth."
|
||||
description="We've helped businesses across construction, restaurants, retail, healthcare, and home services achieve national growth across South Africa and beyond."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
@@ -120,18 +120,18 @@ export default function HomePage() {
|
||||
tag="Complete Solution"
|
||||
tagAnimation="slide-up"
|
||||
title="Everything You Need to Scale"
|
||||
description="Our comprehensive suite of services transforms local businesses into scalable, systems-driven enterprises ready for national expansion."
|
||||
description="Our comprehensive suite of services transforms local businesses into scalable, systems-driven enterprises ready for national expansion. From South Africa to the world."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1", title: "Growth Strategy", content: "We audit your business, identify hidden revenue opportunities, and build a custom growth roadmap. Our strategic framework has helped 150+ businesses unlock their scaling potential."},
|
||||
id: "1", title: "Growth Strategy & Business Audit", content: "We conduct a comprehensive audit of your business operations, revenue streams, and market position. Our strategic framework identifies hidden revenue opportunities and builds a custom growth roadmap specifically tailored to South African market dynamics. We've helped 150+ businesses unlock their scaling potential with data-driven insights and actionable strategies."},
|
||||
{
|
||||
id: "2", title: "Marketing & Brand Development", content: "From brand positioning to customer acquisition, we create marketing systems that convert. We don't just get you customers—we build your brand authority."},
|
||||
id: "2", title: "Marketing & Brand Development", content: "From brand positioning to customer acquisition, we create marketing systems that convert. We specialise in multi-channel marketing strategies optimised for South African audiences. We don't just get you customers—we build your brand authority and establish market leadership in your industry."},
|
||||
{
|
||||
id: "3", title: "Operational Systems", content: "Scaling requires systems. We install the operational frameworks, workflows, and processes that allow you to grow without burnout."},
|
||||
id: "3", title: "Operational Systems & Processes", content: "Scaling requires systems. We install the operational frameworks, workflows, and processes that allow you to grow without burnout. From staff training to quality control procedures, we ensure your business can scale efficiently while maintaining service excellence."},
|
||||
{
|
||||
id: "4", title: "Financial Structure & Bookkeeping", content: "Clean financials are the foundation of scaling. We structure your business finances for growth, profitability tracking, and investor readiness."},
|
||||
id: "4", title: "Financial Structure & Bookkeeping", content: "Clean financials are the foundation of scaling. We structure your business finances for growth and profitability tracking in line with South African tax requirements. We prepare your books for investor readiness, acquisition, or multi-location expansion."},
|
||||
{
|
||||
id: "5", title: "Franchise Scaling Strategy", content: "Ready to franchise? We guide you through franchise structure, systems documentation, and multi-unit expansion planning."},
|
||||
id: "5", title: "Franchise Scaling Strategy", content: "Ready to franchise? We guide you through franchise structure, systems documentation, and multi-unit expansion planning. We help you navigate South African franchise regulations and prepare your business model for rapid, sustainable growth across multiple locations."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=1"
|
||||
imageAlt="Business growth analytics and metrics"
|
||||
@@ -140,7 +140,7 @@ export default function HomePage() {
|
||||
mediaPosition="right"
|
||||
buttons={[
|
||||
{
|
||||
text: "See How We Help", href: "/services"},
|
||||
text: "See How We Help", href: "#lead-capture"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Services section with accordion"
|
||||
@@ -151,19 +151,19 @@ export default function HomePage() {
|
||||
<MetricCardEleven
|
||||
tag="Proven Process"
|
||||
tagAnimation="slide-up"
|
||||
title="Hidden Gem to Leader"
|
||||
description="Our proven 5-step transformation process turns overlooked local businesses into industry-leading national brands."
|
||||
title="Hidden Gem to Leader - Our Transformation Framework"
|
||||
description="Our proven 5-step transformation process turns overlooked local businesses into industry-leading national brands. We've refined this methodology across 150+ successful client engagements."
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "Step 1", title: "Business Audit", description: "Deep-dive analysis of your current operations, revenue, and market position.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=2", imageAlt: "Step 1 Business Audit"},
|
||||
id: "1", value: "Step 1", title: "Business Audit & Assessment", description: "Deep-dive analysis of your current operations, revenue streams, market position, and competitive landscape. We identify inefficiencies and untapped growth opportunities specific to your industry and market.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=2", imageAlt: "Step 1 Business Audit"},
|
||||
{
|
||||
id: "2", value: "Step 2", title: "Growth Strategy", description: "Build custom roadmap identifying revenue opportunities and expansion paths.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=3", imageAlt: "Step 2 Growth Strategy"},
|
||||
id: "2", value: "Step 2", title: "Custom Growth Strategy", description: "Build a bespoke roadmap identifying revenue opportunities, expansion paths, and market positioning. We define your scaling milestones and create a realistic, actionable plan for achieving national market presence.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=3", imageAlt: "Step 2 Growth Strategy"},
|
||||
{
|
||||
id: "3", value: "Step 3", title: "Marketing Systems", description: "Install customer acquisition and brand-building systems that scale.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=4", imageAlt: "Step 3 Marketing Systems"},
|
||||
id: "3", value: "Step 3", title: "Marketing & Brand Systems", description: "Install customer acquisition and brand-building systems that scale with your growth. We implement multi-channel marketing strategies, customer retention programs, and brand positioning that resonates with your target market across South Africa and beyond.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=4", imageAlt: "Step 3 Marketing Systems"},
|
||||
{
|
||||
id: "4", value: "Step 4", title: "Operational Structure", description: "Build systems and processes for sustainable multi-location growth.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=5", imageAlt: "Step 4 Operational Structure"},
|
||||
id: "4", value: "Step 4", title: "Operational Excellence", description: "Build systems and processes for sustainable multi-location growth. We establish standard operating procedures, staff training programs, quality control frameworks, and management structures that enable you to scale without losing operational excellence.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=5", imageAlt: "Step 4 Operational Structure"},
|
||||
{
|
||||
id: "5", value: "Step 5", title: "Scale & Franchise", description: "Prepare for franchising, acquisition, or national expansion.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=6", imageAlt: "Step 5 Scale & Franchise"},
|
||||
id: "5", value: "Step 5", title: "Scale & Franchise Preparation", description: "Prepare for franchising, acquisition, or national expansion. We document your business systems, establish financial benchmarks, create franchise packages, and position your company for major growth events or strategic partnerships.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-tablet-background_1098-3450.jpg?_wi=6", imageAlt: "Step 5 Scale & Franchise"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -174,10 +174,10 @@ export default function HomePage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
tag="Client Success"
|
||||
tag="Client Success Stories"
|
||||
tagAnimation="slide-up"
|
||||
title="What Our Clients Say"
|
||||
description="Real businesses, real results. Hear from the entrepreneurs we've helped scale."
|
||||
description="Real businesses, real results. Hear from the entrepreneurs and business leaders we've helped scale from local success stories into national brands."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus Johnson", role: "Founder & CEO", company: "JJ Construction Group", rating: 5,
|
||||
@@ -212,8 +212,8 @@ export default function HomePage() {
|
||||
tag="Why Choose Housing Hues"
|
||||
tagAnimation="slide-up"
|
||||
title="We Don't Just Market You — We Scale You"
|
||||
description="Growth-focused strategy, real business systems, marketing that converts, and preparation for scale."
|
||||
subdescription="Partner with experts who've scaled 150+ local businesses into national brands"
|
||||
description="Growth-focused strategy, real business systems, marketing that converts, and preparation for scale. We're committed to transforming your local business into a national powerhouse."
|
||||
subdescription="Partner with experts who've scaled 150+ local businesses into national brands. Based in South Africa with a track record of helping businesses across construction, hospitality, retail, healthcare, and home services achieve exponential growth."
|
||||
icon={TrendingUp}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg?_wi=2"
|
||||
imageAlt="Housing Hues scaling success"
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
tagIcon={Gift}
|
||||
tagAnimation="slide-up"
|
||||
title="Get Your Free Business Growth Strategy"
|
||||
description="Schedule a 30-minute consultation where we'll audit your business, identify growth opportunities, and show you exactly how to scale."
|
||||
description="Schedule a 30-minute consultation where we'll audit your business, identify growth opportunities, and show you exactly how to scale. South African businesses welcome."
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
useInvertedBackground={false}
|
||||
@@ -239,7 +239,7 @@ export default function HomePage() {
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get My Growth Plan"
|
||||
termsText="We respect your privacy. Your growth plan consultation is confidential."
|
||||
termsText="We respect your privacy. Your growth plan consultation is confidential. We serve businesses across South Africa."
|
||||
ariaLabel="Lead capture contact form"
|
||||
/>
|
||||
</div>
|
||||
@@ -247,14 +247,14 @@ export default function HomePage() {
|
||||
<div id="cta-banner" data-section="cta-banner">
|
||||
<HeroBillboardScroll
|
||||
title="Talk To A Growth Strategist Today"
|
||||
description="Stop leaving revenue on the table. Our growth specialists are ready to discuss your scaling roadmap and show you exactly how to dominate your market."
|
||||
description="Stop leaving revenue on the table. Our growth specialists are ready to discuss your scaling roadmap and show you exactly how to dominate your market. Free 30-minute consultation."
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: (555) 123-4567", onClick: () => window.location.href = "tel:+15551234567"},
|
||||
text: "Call Now: +27 (11) 123-4567", onClick: () => window.location.href = "tel:+27111234567"},
|
||||
{
|
||||
text: "Book a Free Call", href: "/services"},
|
||||
text: "Book a Free Call", href: "#lead-capture"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Call to action banner"
|
||||
@@ -270,4 +270,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user