diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9714ef6..0b5a250 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Xenko - Web Design, Software, Branding Agency", description: "Professional web design, custom software, and branding solutions for growing businesses. Fast delivery, transparent pricing, and ongoing support.", keywords: "web design, custom software, branding, digital agency, website development, Sri Lanka", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Xenko - Web Design, Software, Branding Agency", description: "Professional web design, custom software, and branding solutions for growing businesses.", type: "website", siteName: "Xenko", images: [ - { - url: "http://img.b2bpic.net/free-vector/futuristic-technology-infographic-pack_52683-34336.jpg", alt: "Xenko digital solutions showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Xenko - Web Design, Software, Branding Agency", description: "Professional web design, custom software, and branding solutions for growing businesses.", images: ["http://img.b2bpic.net/free-vector/futuristic-technology-infographic-pack_52683-34336.jpg"], - }, -}; + title: "Xenko | Web Design, Software, & Branding", description: "We build websites, software, and brands that elevate your business. Fast delivery, transparent pricing, long-term support."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}