web/app/account/layout.tsx
Aidan a8f4de04b4
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 6m11s
add account frontend elements w/ sample
2025-01-25 20:23:27 -05:00

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>
)
}