diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ed3940e..9f3b915 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Graphic Design Services | DesignStudio", description: "Award-winning graphic design agency offering logo design, branding, social media graphics, and creative design solutions for businesses of all sizes.", keywords: "graphic design, logo design, brand identity, social media design, professional design agency, branding services, poster design, flyer design", metadataBase: new URL("https://designstudio.com"), - alternates: { - canonical: "https://designstudio.com"}, - openGraph: { - title: "Creative Graphic Design Services | DesignStudio", description: "Transform your brand with award-winning graphic design. Fast delivery, affordable pricing, unlimited revisions.", url: "https://designstudio.com", siteName: "DesignStudio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg", alt: "DesignStudio Portfolio Showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Graphic Design Services", description: "Creative design solutions that elevate your brand. Fast, affordable, and professional.", images: ["http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DesignStudio - Creative Graphic Design Services", description: "Transform your vision into stunning visual designs. We specialize in logo design, branding, social media graphics, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}