diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9a6e3e3..648b384 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,32 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work, creative studio setups, and visual storytelling with precision lighting and artistic direction.", keywords: "video production, cinematography, filmmaker, studio setup, cinematic video, professional videographer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work and creative studio setups", type: "website", siteName: "Studio"}, - twitter: { - card: "summary_large_image", title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work and creative studio setups"}, + title: 'Studio', + description: 'Professional video production and cinematic excellence', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +