From b79ddc1f26067bbdd10bf6f4348f1d1a1ff7c0c9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 14:27:56 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..b727a6f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,55 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Web Design Agency | Next Step Website Co.", + description: "Get a professional website for your business. We create stunning, conversion-focused sites for businesses without online presence. Launch your digital presence today.", + keywords: "web design, web development, website design agency, small business website, professional web design", + metadataBase: new URL("https://nextstepwebsiteco.com"), + alternates: { + canonical: "https://nextstepwebsiteco.com", + }, + openGraph: { + title: "Next Step Website Co. - Web Design for Growing Businesses", + description: "Transform your business with a stunning website. Expert design, fast performance, SEO-optimized.", + siteName: "Next Step Website Co.", + type: "website", + url: "https://nextstepwebsiteco.com", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +58,9 @@ export default function RootLayout({ return ( - + {children}