Added settings, enabled calendar

This commit is contained in:
dohsimpson
2024-12-31 13:58:14 -05:00
parent c4f0db329b
commit 7195f0d1f2
18 changed files with 493 additions and 137 deletions

9
app/settings/layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
import Layout from '@/components/Layout'
export default function SettingsLayout({
children,
}: {
children: React.ReactNode
}) {
return <Layout>{children}</Layout>
}