Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:07:49 +00:00
2 changed files with 9 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
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";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "LocalLaunch - Web Design for Local Businesses",
description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support. Get more customers online.",
keywords: "website design local businesses, small business web design, local SEO, contractor websites, restaurant websites",
metadataBase: new URL("https://locallaunch.com"),
alternates: {
canonical: "https://locallaunch.com",
},
openGraph: {
title: "LocalLaunch - Web Design for Local Businesses",
description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support.",
type: "website",
siteName: "LocalLaunch",
url: "https://locallaunch.com",
images: [
{
url: "http://img.b2bpic.net/free-vector/travel-adventure-landing-page-template_1361-896.jpg",
alt: "LocalLaunch website design showcase",
},
],
},
twitter: {
card: "summary_large_image",
title: "LocalLaunch - Web Design for Local Businesses",
description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support.",
images: ["http://img.b2bpic.net/free-vector/travel-adventure-landing-page-template_1361-896.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "LocalLaunch - Professional Websites for Local Businesses", description: "Get a professional website for your local business in 7-10 days. Fast, modern, and optimized for conversions."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -142,7 +142,7 @@ export default function HomePage() {
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Ready to Grow"
title="Ready for a Better Website?"
title="Get More Customers in 7-10 Days"
description="Stop losing customers to competitors with outdated websites. Let's build something amazing that brings you more business."
buttons={[
{ text: "Book a Free Strategy Call", href: "/contact" },
@@ -184,4 +184,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}