mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-08-04 11:58:44 +00:00
Click any StyleCard to open a full-screen modal showing the style applied to 9 interactive phone UI controls (buttons, inputs, toggles, checkboxes, radios, cards, badges, slider, nav bar) inside an iPhone mockup frame. Co-authored-by: yongtang <jlinux@msn.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
572 B
TypeScript
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>
|
|
);
|
|
}
|