mirror of
https://codeberg.org/MarkusThielker/next-ory.git
synced 2025-07-05 22:29:17 +00:00
Initial commit
This commit is contained in:
commit
a74e7f3ebd
84 changed files with 11089 additions and 0 deletions
13
authentication/src/app/flow/layout.tsx
Normal file
13
authentication/src/app/flow/layout.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { ThemeToggle } from '@/components/themeToggle';
|
||||
import React from 'react';
|
||||
|
||||
export default function FlowLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<div className="flex flex-col min-h-screen items-center justify-center relative space-y-4">
|
||||
<div className="absolute flex items-center space-x-4 top-4 right-4">
|
||||
<ThemeToggle/>
|
||||
</div>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue