feature/user-authentication #2

Merged
lasserh merged 31 commits from feature/user-authentication into main 2026-06-07 13:17:55 +02:00
3 changed files with 22 additions and 0 deletions
Showing only changes of commit 01e6bf3f28 - Show all commits

View file

@ -0,0 +1,8 @@
export default function App() {
return (
<div>
<h1>DeutschLernen</h1>
<p>German Learning Application</p>
</div>
);
}

View file

@ -0,0 +1,9 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}

View file

@ -0,0 +1,5 @@
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';
createRoot(document.getElementById('root')!).render(<App />);