All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m34s
18 lines
485 B
TypeScript
18 lines
485 B
TypeScript
import TheHub from "./TheHub";
|
|
|
|
export default async function Home() {
|
|
return (
|
|
<main className="container">
|
|
<div>
|
|
<h1 className="text-2xl sm:text-4xl pt-4">Software Developer Jobs</h1>
|
|
<h2 className="text-xl sm:text-2xl pt-4">
|
|
Get entry- and mid level software developer jobs in Denmark as soon as
|
|
they are posted!
|
|
</h2>
|
|
<hr className="stroke stroke-stone-200 my-4" />
|
|
<TheHub />
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|