All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 6m11s
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
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>
|
|
)
|
|
}
|
|
|