diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 821d1f1..7097504 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./styles/base.css"; +import "./styles/variables.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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "VOLGA - Premium Luxury Brand Excellence", - description: "Transform your luxury brand with VOLGA. Strategic consulting, exclusive design, and high-end marketing for discerning clientele.", - keywords: "luxury brand, premium consulting, exclusive design, high-end marketing, brand excellence, luxury strategy", - openGraph: { - title: "VOLGA - Luxury Brand Excellence", - description: "Elevate your premium brand through sophisticated strategy and exceptional design.", - siteName: "VOLGA", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "VOLGA - Premium Luxury Brands", - description: "Transform your luxury brand with VOLGA's strategic excellence.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +