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