2025-11-19 01:49:26 -05:00
|
|
|
|
import { ReactNode } from "react";
|
2025-12-16 17:31:13 -08:00
|
|
|
|
import { NuqsAdapter } from "nuqs/adapters/next/app";
|
2025-09-11 16:48:23 -07:00
|
|
|
|
import "./style.css";
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata = {
|
2025-11-12 19:22:29 -08:00
|
|
|
|
title: "MapGenius – Explore maps for Tribes 2",
|
|
|
|
|
|
description: "Tribes 2 forever.",
|
2025-09-11 16:48:23 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-11 22:29:09 -08:00
|
|
|
|
export const viewport = {
|
|
|
|
|
|
width: "device-width",
|
|
|
|
|
|
initialScale: 1,
|
|
|
|
|
|
maximumScale: 1,
|
|
|
|
|
|
userScalable: false,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-19 01:49:26 -05:00
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
2025-09-11 16:48:23 -07:00
|
|
|
|
return (
|
|
|
|
|
|
<html lang="en">
|
2025-12-16 17:31:13 -08:00
|
|
|
|
<body>
|
2026-03-12 16:25:04 -07:00
|
|
|
|
<NuqsAdapter defaultOptions={{ clearOnDefault: false }}>
|
2025-12-16 17:31:13 -08:00
|
|
|
|
{children}
|
|
|
|
|
|
</NuqsAdapter>
|
|
|
|
|
|
</body>
|
2025-09-11 16:48:23 -07:00
|
|
|
|
</html>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|