t2-mapper/app/layout.tsx

19 lines
285 B
TypeScript
Raw Normal View History

2025-09-11 16:48:23 -07:00
import "./style.css";
export const metadata = {
2025-09-11 18:06:10 -07:00
title: "Tribes 2 Maps",
description: "Be the map genius.",
2025-09-11 16:48:23 -07:00
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}