fosrl.pangolin/src/app/profile/notifications/page.tsx

18 lines
480 B
TypeScript
Raw Normal View History

2024-10-13 16:18:54 -04:00
import { Separator } from "@/components/ui/separator"
2024-10-20 12:55:28 -04:00
import { NotificationsForm } from "./notifications-form"
2024-10-13 16:18:54 -04:00
export default function SettingsNotificationsPage() {
return (
2024-11-22 23:06:12 -05:00
<div className="space-y-8">
2024-10-13 16:18:54 -04:00
<div>
<h3 className="text-lg font-medium">Notifications</h3>
<p className="text-sm text-muted-foreground">
Configure how you receive notifications.
</p>
</div>
<Separator />
<NotificationsForm />
</div>
)
}