diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 62cd8da..75b0c05 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-