2025-12-26 16:05:08 +00:00

12 lines
279 B
TypeScript

// app/(defaults)/turn14-settings/page.tsx
import type { Metadata } from 'next';
import Turn14SettingsClient from './Turn14SettingsClient';
export const metadata: Metadata = {
title: 'Turn14 Settings',
};
export default function Page() {
return <Turn14SettingsClient />;
}