aleksa.sh/src/app/page.tsx
aleksa a9b8e7bc9e
All checks were successful
E2E Tests with Cypress / cypress (push) Successful in 3m12s
initial boilerplate code
2025-04-12 07:05:13 +02:00

13 lines
274 B
TypeScript

'use client'; //mark as client app
export default function Home() {
return (
<div className="container">
<main>
<h1 className="title">aleksa.sh</h1>
<p className="subTitle">coming soon</p>
</main>
<footer></footer>
</div>
);
}