9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import type { Metadata } from "next";
|
|
import { SettingsPage } from "@/components/settings/settings-page";
|
|
|
|
export const metadata: Metadata = { title: "Ustawienia / Settings" };
|
|
|
|
export default function Page() {
|
|
return <SettingsPage />;
|
|
}
|