christian 54a669eb11
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m34s
more mobile css
2024-06-10 01:33:29 +02:00

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>
);
}