Files
AceJobAgency/AceJobAgency.client/src/pages/HomePage.tsx
2025-02-08 19:52:02 +08:00

29 lines
1017 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Button, Card, Input } from "@heroui/react";
export default function HomePage() {
return (
<div className="absolute inset-0 w-full h-full flex flex-col justify-center bg-indigo-500/10 dark:bg-indigo-500/20">
<div className="relative m-auto w-max h-max flex flex-col gap-10 justify-center text-center *:mx-auto">
<div className="flex flex-col gap-6 w-full text-wrap">
<p className="text-xl sm:text-2xl md:text-4xl lg:text-5xl font-bold">
Where the best employees get
<br />
matched with the best employers.
</p>
<p className="text-xl">
Join the worlds most widely adopted job search platform.
</p>
</div>
<div>
<Card className="flex flex-row gap-2 p-2">
<Input placeholder="Enter your email" size="lg" />
<Button color="primary" size="lg">
Sign up
</Button>
</Card>
</div>
</div>
</div>
);
}