diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e0c93f5..fa1b434 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1410 +1,20 @@ import type { Metadata } from "next"; -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 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: "Jospark Tech - Creative Design Studio", description: "Premium design services including poster design, logo making, branding, and social media content. Transform your vision into stunning visual experiences.", keywords: "design studio, logo design, poster design, branding, creative agency, social media design", metadataBase: new URL("https://jospark.tech"), - openGraph: { - title: "Jospark Tech - Creative Design Studio", description: "Premium design services and creative solutions for your brand", type: "website", siteName: "Jospark Tech" - }, - twitter: { - card: "summary_large_image", title: "Jospark Tech - Creative Design Studio", description: "Premium design services and creative solutions for your brand" - } -}; + title: "Jospark - Creative Studio", description: "Transform your ideas into remarkable visual experiences"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -