Merge version_1 into main #1
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
try {
|
||||
if (localStorage.getItem('theme') === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark')
|
||||
} else {
|
||||
document.documentElement.classList.remove('dark')
|
||||
}
|
||||
} catch (e) {}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1400,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function AudiClubPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="Experience the Passion of Audi Excellence"
|
||||
title="Experience the Passion"
|
||||
description="Join our exclusive community of Audi enthusiasts dedicated to celebrating engineering innovation, performance, and the driving experience. Connect with fellow members, attend premium events, and unlock exclusive benefits."
|
||||
tag="Automotive Excellence"
|
||||
tagIcon={Zap}
|
||||
|
||||
Reference in New Issue
Block a user