diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b26942a..cb83bfd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Studio - Creative Digital Solutions & Design", description: "Transform your vision into reality with our creative digital design and strategy services. Modern solutions for innovative brands.", keywords: "digital design, creative agency, web design, branding, user experience, digital strategy", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Studio - Creative Digital Solutions", description: "Transform your vision into reality with our creative digital design and strategy services.", type: "website", siteName: "Studio", images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-vintage-library-with-wooden-shelves-sophisticated-green-lamps_482257-125675.jpg", alt: "Studio - Creative Digital Solutions"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Studio - Creative Digital Solutions", description: "Transform your vision into reality with our creative digital design and strategy services.", images: ["http://img.b2bpic.net/free-photo/elegant-vintage-library-with-wooden-shelves-sophisticated-green-lamps_482257-125675.jpg"], - }, -}; + title: "Studio - Creative Digital Solutions", description: "Crafting beautiful digital experiences that transform your vision into reality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +