83 lines
2.7 KiB
TypeScript
83 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { Halant } from "next/font/google";
|
||
import { Inter } from "next/font/google";
|
||
import { Raleway } from "next/font/google";
|
||
import "./globals.css";
|
||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||
import Tag from "@/tag/Tag";
|
||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||
|
||
const halant = Halant({
|
||
variable: "--font-halant",
|
||
subsets: ["latin"],
|
||
weight: ["300", "400", "500", "600", "700"],
|
||
});
|
||
|
||
const inter = Inter({
|
||
variable: "--font-inter",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const raleway = Raleway({
|
||
variable: "--font-raleway",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "ModiFi Classics | Investment-Grade Modern Classic Cars",
|
||
description: "Research hub and investment platform treating 1990s–2010s analog vehicles as undervalued alternative assets. Identify appreciation potential before the market.",
|
||
keywords: "modern classic cars, alternative assets, automotive investment, vintage cars, supra, nsx, porsche, collector cars, investment strategy",
|
||
metadataBase: new URL("https://modificlassics.com"),
|
||
alternates: {
|
||
canonical: "https://modificlassics.com",
|
||
},
|
||
openGraph: {
|
||
title: "ModiFi Classics | Modern Classic Car Investment Platform",
|
||
description: "Treat analog vehicles as structured alternative assets. Data-driven thesis for intelligent collectors and investors.",
|
||
url: "https://modificlassics.com",
|
||
siteName: "ModiFi Classics",
|
||
images: [
|
||
{
|
||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmwQVXtVxwHGXAirass9MNraMS/extreme-close-up-of-a-vintage-analog-mec-1773295453810-846e1eea.png",
|
||
alt: "ModiFi Classics - Modern Classic Investment Platform",
|
||
},
|
||
],
|
||
type: "website",
|
||
},
|
||
twitter: {
|
||
card: "summary_large_image",
|
||
title: "ModiFi Classics | Modern Classic Car Investment",
|
||
description: "Bloomberg Terminal meets car culture. Institutional-grade analysis of analog vehicle appreciation.",
|
||
images: [
|
||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmwQVXtVxwHGXAirass9MNraMS/extreme-close-up-of-a-vintage-analog-mec-1773295453810-846e1eea.png",
|
||
],
|
||
},
|
||
robots: {
|
||
index: true,
|
||
follow: true,
|
||
},
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="en" suppressHydrationWarning>
|
||
<ServiceWrapper>
|
||
<body
|
||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||
>
|
||
<Tag />
|
||
{children}
|
||
<script
|
||
dangerouslySetInnerHTML={{
|
||
__html: `${getVisualEditScript()}`
|
||
}}
|
||
/>
|
||
</body>
|
||
</ServiceWrapper>
|
||
</html>
|
||
);
|
||
} |