t2-mapper/app/layout.tsx

28 lines
610 B
TypeScript
Raw Normal View History

2025-11-19 01:49:26 -05:00
import { ReactNode } from "react";
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
};
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">
<body>
<NuqsAdapter defaultOptions={{ clearOnDefault: false }}>
{children}
</NuqsAdapter>
</body>
2025-09-11 16:48:23 -07:00
</html>
);
}