From 440a5582d5cec2a3d4f89aa490a3bb7c68cdb0ee Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:53:01 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8be994..2205389 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Expo Digital - Custom Website Design & Development", description: "Beautiful, personalized websites for businesses. 2 years of web design expertise. Let us create your perfect online presence.", keywords: "web design, website development, custom websites, digital agency, web designer", metadataBase: new URL("https://expodigital.com"), - openGraph: { - title: "Expo Digital - Custom Website Design", description: "We create beautiful, personalized websites that showcase your brand and drive results.", type: "website", siteName: "Expo Digital"}, - twitter: { - card: "summary_large_image", title: "Expo Digital - Custom Website Design", description: "Beautiful websites crafted for your business"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Expo Digital - Web Design & Development", description: "Create personalized websites that showcase your brand's unique story."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}