9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
export default function Page() {
|
|
return (
|
|
<main style={{ textAlign: 'center' }}>
|
|
<h1 style={{ fontSize: '2rem', marginBottom: '0.5rem' }}>FieldOps Admin</h1>
|
|
<p style={{ color: '#64748b' }}>Coming soon.</p>
|
|
</main>
|
|
);
|
|
}
|