diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d336570..85649ad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,22 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Web Development & Automation | Your Company", description: "Build stunning websites and automate your business systems. We help SMBs increase leads, boost sales, and save time with modern web solutions.", keywords: "web development, automation, web design, business automation, app development", openGraph: { - title: "Build Better Websites. Automate Everything.", description: "Web development and business automation solutions for small and medium businesses.", siteName: "Your Company", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Web Development & Automation Services", description: "Transform your business with custom websites and smart automation." - }, - robots: { - index: true, - follow: true - } + title: 'Your Company - Web Development & Automation', + description: 'Build better websites and automate everything. We help small and medium businesses create stunning websites and automate repetitive systems.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}