From 9ccd609472de8b359d32d787a95275947de91475 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:01:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 7 insertions(+), 1431 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f78d94c..9961dc3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kavion Studio | Creative Design & Marketing for Local Businesses", - description: "Professional graphic design, branding, website design, and marketing services for local businesses. Generate leads with modern creative solutions.", - keywords: "graphic design, logo design, branding agency, website design, marketing services, creative agency, local business design", - metadataBase: new URL("https://kavionstudio.com"), - alternates: { - canonical: "https://kavionstudio.com", - }, - openGraph: { - title: "Kavion Studio | Creative Design & Marketing Agency", - description: "Transform your business with professional design and marketing solutions.", - url: "https://kavionstudio.com", - siteName: "Kavion Studio", - images: [ - { - url: "http://img.b2bpic.net/free-photo/retro-camera-digital-tablet-coffee-cup-paper-pencil-diary-keyboard-white-table_23-2148061577.jpg", - alt: "Kavion Studio Creative Team", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Kavion Studio | Creative Design & Marketing", - description: "Professional design and marketing for local businesses", - images: [ - "http://img.b2bpic.net/free-photo/retro-camera-digital-tablet-coffee-cup-paper-pencil-diary-keyboard-white-table_23-2148061577.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Kavion Studio - Creative Design & Marketing", description: "Professional branding, graphic design, marketing & web design for local businesses"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -