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