t2-mapper/app/layout.tsx

25 lines
536 B
TypeScript
Raw Permalink Normal View History

2025-11-19 06:49:26 +00:00
import { ReactNode } from "react";
import { NuqsAdapter } from "nuqs/adapters/next/app";
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>
<NuqsAdapter
defaultOptions={{
clearOnDefault: false,
}}
>
{children}
</NuqsAdapter>
</body>
2025-09-11 23:48:23 +00:00
</html>
);
}