diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3595ccf..bf676a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1427 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Graphic Designer Portfolio | Creative Design Services", description: "Professional graphic designer showcasing branding, web design, and creative solutions for businesses. Custom design services tailored to elevate your brand.", keywords: "graphic design, branding, web design, logo design, portfolio, creative design, visual communication", metadataBase: new URL("https://designstudio.com"), - alternates: { - canonical: "https://designstudio.com" - }, - openGraph: { - title: "Graphic Designer Portfolio | Creative Design Services", description: "Professional graphic designer showcasing branding, web design, and creative solutions for businesses.", url: "https://designstudio.com", siteName: "Design Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/tanned-girl-striped-summer-shirt-using-smartphone-sitting-table-with-computer-it_197531-4886.jpg", alt: "Graphic Design Portfolio" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Graphic Designer Portfolio", description: "Professional graphic design and creative services", images: ["http://img.b2bpic.net/free-photo/tanned-girl-striped-summer-shirt-using-smartphone-sitting-table-with-computer-it_197531-4886.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Design Studio", description: "Transform your brand with stunning graphic design solutions"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -