mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 20:25:01 +00:00
25 lines
536 B
TypeScript
25 lines
536 B
TypeScript
import { ReactNode } from "react";
|
||
import { NuqsAdapter } from "nuqs/adapters/next/app";
|
||
import "./style.css";
|
||
|
||
export const metadata = {
|
||
title: "MapGenius – Explore maps for Tribes 2",
|
||
description: "Tribes 2 forever.",
|
||
};
|
||
|
||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||
return (
|
||
<html lang="en">
|
||
<body>
|
||
<NuqsAdapter
|
||
defaultOptions={{
|
||
clearOnDefault: false,
|
||
}}
|
||
>
|
||
{children}
|
||
</NuqsAdapter>
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|