diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 273967a..5882a79 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1420 +1,50 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import { ServiceWrapper } from "@/providers/ServiceWrapper";
+import { Tag } from "@/components/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Audi Club - Premium Automotive Community", description: "Join the Audi Club community of passionate enthusiasts. Exclusive events, track days, technical resources, and networking for Audi owners worldwide.", keywords: "Audi club, automotive community, car enthusiasts, Audi owners, track days, car events", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Audi Club - Premium Automotive Community", description: "Join the Audi Club community of passionate enthusiasts. Exclusive events, track days, technical resources, and networking for Audi owners worldwide.", siteName: "Audi Club", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/woman-choosing-car-car-showroom_1303-15152.jpg", alt: "Audi Club Community"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Audi Club - Premium Automotive Community", description: "Join the Audi Club community of passionate enthusiasts.", images: ["http://img.b2bpic.net/free-photo/woman-choosing-car-car-showroom_1303-15152.jpg"],
- },
-};
+ title: "Audi Club - Community of Enthusiasts", description: "Join the Audi Club community. Experience exclusive events, connect with fellow Audi owners, and celebrate automotive excellence."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-