14 lines
451 B
TypeScript
14 lines
451 B
TypeScript
import React from 'react';
|
|
import { Page } from './_util';
|
|
|
|
export default function ProfileSetupPage() {
|
|
return (
|
|
<Page title="Profil erstellen">
|
|
<input placeholder="Dein Name" style={{ width: '100%', padding: 10, border: '1px solid #ddd', borderRadius: 8 }} />
|
|
<div style={{ height: 12 }} />
|
|
<button style={{ padding: '10px 16px', borderRadius: 8, background: '#111827', color: 'white' }}>Starten</button>
|
|
</Page>
|
|
);
|
|
}
|
|
|