t2-mapper/app/layout.tsx

16 lines
334 B
TypeScript
Raw Normal View History

2025-11-19 06:49:26 +00:00
import { ReactNode } from "react";
2025-09-11 23:48:23 +00:00
import "./style.css";
export const metadata = {
2025-11-13 03:22:29 +00:00
title: "MapGenius  Explore maps for Tribes 2",
description: "Tribes 2 forever.",
2025-09-11 23:48:23 +00:00
};
2025-11-19 06:49:26 +00:00
export default function RootLayout({ children }: { children: ReactNode }) {
2025-09-11 23:48:23 +00:00
return (
<html lang="en">
<body>{children}</body>
</html>
);
}