diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f4c9483..cb8014f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,38 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
+import "./styles/globals.css";
import { Inter } from "next/font/google";
-import { Archivo } 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"],
-});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const archivo = Archivo({
- variable: "--font-archivo", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "Audi Club - Premium Automotive Community", description: "Join an exclusive community of Audi enthusiasts. Access VIP events, factory tours, track days, and connect with 5,000+ passionate members worldwide.", keywords: "Audi club, automotive community, exclusive events, track days, Audi enthusiasts, membership", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Audi Club - Premium Automotive Community", description: "Join an exclusive community of Audi enthusiasts with VIP access to events, factory tours, and premium networking.", siteName: "Audi Club", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/black-business-class-sedan-with-design-wheel_114579-5233.jpg", alt: "Audi Club Premium Membership"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Audi Club - Premium Automotive Community", description: "Join our exclusive Audi community with VIP events and premium benefits.", images: ["http://img.b2bpic.net/free-photo/black-business-class-sedan-with-design-wheel_114579-5233.jpg"],
- },
+ title: "billiclipd | Viral Clip Editing Services", description: "Transform your long-form content into viral clips. Expert editing for TikTok, Instagram Reels, and YouTube Shorts. 10M+ views generated."
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-