30 lines
704 B
TypeScript
30 lines
704 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import ScrollToTop from "@/components/ScrollToTop";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "HONDA VERT | ECU Management & Performance Engineering",
|
|
description: "The ultimate tuning interface for Honda K-Series engines. Surgical precision meets raw performance.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className={inter.variable}>
|
|
<body>
|
|
<ScrollToTop />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|