Update src/app/layout.tsx

This commit is contained in:
2026-03-02 22:11:33 +00:00
parent e6ae9e7267
commit ecf397a7a7

View File

@@ -1,32 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Custom Web Design for Small Business - Gavin Healey", description: "High-converting custom websites for small to medium businesses. Affordable flat rate $650. Increase leads, revenue, and online presence with results-driven design.", keywords: "custom web design, affordable website designer, small business websites, lead generation, conversion optimization", openGraph: {
title: "Custom Web Design for Business Growth", description: "Affordable, high-converting custom websites built to increase revenue and generate qualified leads for your business.", type: "website", url: "https://example.com", siteName: "Gavin Healey Web Design", images: [{
url: "https://images.unsplash.com/photo-1460925895917-adf4198c869f?w=1200&h=630&fit=crop", alt: "Custom web design for business"
title: "Global Web Solutions - Build Your International Presence", description: "Professional custom web design and development for businesses worldwide. Create a powerful online presence that connects with your global audience.", keywords: "web design, web development, custom websites, global reach, international business", openGraph: {
title: "Global Web Solutions", description: "Professional custom web design and development for businesses worldwide.", type: "website", url: "https://example.com", siteName: "Global Web Solutions", images: [{
url: "https://images.unsplash.com/photo-1460925895917-adf4198c869f?w=1200&h=630&fit=crop", alt: "Professional web design"
}]
},
twitter: {
card: "summary_large_image", title: "Custom Web Design - Increase Your Business Revenue", description: "High-converting websites built for small businesses. $650 flat rate. Results-driven design focused on your growth.", images: ["https://images.unsplash.com/photo-1460925895917-adf4198c869f?w=1200&h=630&fit=crop"]
card: "summary_large_image", title: "Global Web Solutions", description: "Professional custom web design and development for businesses worldwide.", images: ["https://images.unsplash.com/photo-1460925895917-adf4198c869f?w=1200&h=630&fit=crop"]
},
robots: {
index: true,
@@ -43,7 +32,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}