17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
import OrganizationSettings from '@/components/settings/OrganizationSettings'
|
|
|
|
export const metadata = {
|
|
title: 'Organization Settings - Pulse',
|
|
description: 'Manage your organization settings',
|
|
}
|
|
|
|
export default function OrgSettingsPage() {
|
|
return (
|
|
<div className="min-h-screen pt-24 pb-12 px-4 sm:px-6">
|
|
<div className="max-w-4xl mx-auto">
|
|
<OrganizationSettings />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|