All checks were successful
E2E Tests with Cypress / cypress (push) Successful in 3m12s
13 lines
274 B
TypeScript
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>
|
|
);
|
|
}
|