mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
settings route
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
import { SettingsRoute } from "@/components/routes/SettingsRoute"
|
||||||
|
|
||||||
|
export default function SettingsPage() {
|
||||||
|
return <SettingsRoute />
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user