settings route

This commit is contained in:
marshennikovaolga
2024-09-04 11:58:07 +03:00
parent dfc0b0f378
commit 1088846e17
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { SettingsRoute } from "@/components/routes/SettingsRoute"
export default function SettingsPage() {
return <SettingsRoute />
}

View File

@@ -0,0 +1,13 @@
"use client"
import { useAccount } from "@/lib/providers/jazz-provider"
export const SettingsRoute = () => {
const { me } = useAccount()
return (
<div className="flex flex-1 flex-col text-sm text-black dark:text-white">
<p className="h-[74px] p-[20px] text-2xl font-semibold opacity-80">Settings</p>
<div className="flex flex-col items-center border-b border-neutral-900 bg-inherit pb-5"></div>
</div>
)
}