blob: a6e324920b7a95b64a9e34e723bab7dee60157eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function App() {
return (
<main className="flex items-center justify-center min-h-screen">
<div className="text-center">
<h1 className="font-display text-fg-1 text-4xl mb-2">Solstice</h1>
<p className="text-fg-3">Pomodoro timer with ambient soundscapes.</p>
</div>
</main>
);
}
export default App;
|