Files
playbook/ui-ux-pro-max/gallery/app/layout.tsx
T
2026-08-12 08:38:22 +08:00

23 lines
572 B
TypeScript

import type { Metadata } from "next";
import { Providers } from "./providers";
import "./globals.css";
export const metadata: Metadata = {
title: "Style Gallery — UI/UX Pro Max",
description: "Browse and explore 67 UI styles with live previews, color palettes, and implementation details.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className="min-h-screen antialiased">
<Providers>{children}</Providers>
</body>
</html>
);
}