|
@@ -4,6 +4,7 @@ import { ExternalLink, Key } from 'lucide-react'
|
|
|
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
|
|
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
|
|
|
import { Separator } from '@/components/ui/separator'
|
|
import { Separator } from '@/components/ui/separator'
|
|
|
import { SidebarTrigger } from '@/components/ui/sidebar'
|
|
import { SidebarTrigger } from '@/components/ui/sidebar'
|
|
|
|
|
+import { ConfigDrawer } from '@/components/config-drawer'
|
|
|
import { AuthenticatedLayout } from '@/components/layout/authenticated-layout'
|
|
import { AuthenticatedLayout } from '@/components/layout/authenticated-layout'
|
|
|
import { Main } from '@/components/layout/main'
|
|
import { Main } from '@/components/layout/main'
|
|
|
import { ThemeSwitch } from '@/components/theme-switch'
|
|
import { ThemeSwitch } from '@/components/theme-switch'
|
|
@@ -41,7 +42,10 @@ function MissingClerkPubKey() {
|
|
|
<AuthenticatedLayout>
|
|
<AuthenticatedLayout>
|
|
|
<div className='bg-background flex h-16 justify-between p-4'>
|
|
<div className='bg-background flex h-16 justify-between p-4'>
|
|
|
<SidebarTrigger variant='outline' className='scale-125 sm:scale-100' />
|
|
<SidebarTrigger variant='outline' className='scale-125 sm:scale-100' />
|
|
|
- <ThemeSwitch />
|
|
|
|
|
|
|
+ <div className='space-x-4'>
|
|
|
|
|
+ <ThemeSwitch />
|
|
|
|
|
+ <ConfigDrawer />
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
<Main className='flex flex-col items-center justify-start'>
|
|
<Main className='flex flex-col items-center justify-start'>
|
|
|
<div className='max-w-2xl'>
|
|
<div className='max-w-2xl'>
|