Drop the brutalist hazard-tape vocabulary in favor of refined modern SaaS: white cards on zinc-50, soft ring-1 zinc-200 borders (no hard 2px black), rounded-full pills, sans for chrome + mono for tabular data, emerald replacing yellow as the saturated accent. Theme color shifts to zinc-900 with an emerald dot on the icon.
32 lines
724 B
TypeScript
32 lines
724 B
TypeScript
import "./globals.css";
|
|
import type { Metadata, Viewport } from "next";
|
|
import Nav from "@/components/nav";
|
|
import AutoRefresh from "@/components/auto-refresh";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "CM Bot V2",
|
|
description: "CM Bot account and user dashboard",
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: "#18181b",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="min-h-screen bg-zinc-50 text-zinc-900 antialiased">
|
|
<Nav />
|
|
<main className="mx-auto max-w-6xl px-4 pb-16 pt-8 sm:px-6 sm:pt-12">
|
|
{children}
|
|
</main>
|
|
<AutoRefresh />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|