web/app/account/layout.tsx

16 lines
332 B
TypeScript
Raw Normal View History

import { Theme } from "@radix-ui/themes"
import "@radix-ui/themes/styles.css"
export default function AccountLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<Theme appearance="dark" accentColor="blue" grayColor="slate">
<div className="min-h-screen bg-gray-900">{children}</div>
</Theme>
)
}