HondaVert/src/app/layout.tsx
2026-03-27 22:04:14 +05:30

28 lines
628 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
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>
{children}
</body>
</html>
);
}