Files
XgridConverter/app/layout.tsx
Andreas Wilms 9b5f2d0814 test
2026-03-09 12:25:43 +01:00

36 lines
829 B
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Xgrids Scene Wizard", // I went ahead and updated your title!
description: "Convert .lcc/.lci to SOG, LODs, and PLY meshes locally.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
// suppressHydrationWarning added here:
<html lang="en" suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}