aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(navigation)/settings/page.tsx
blob: c9046fba0d1e6895b73a015f1af62853f9644a07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"use client"
import { ProfileView } from "@/components/views/profile"
export default function ProfilePage() {
	return (
		<div className="py-6 max-w-xl">
			<h1 className="text-2xl font-bold text-foreground mb-2">
				Profile Settings
			</h1>
			<ProfileView />
		</div>
	)
}