2025-02-01 15:52:08 +08:00
|
|
|
import { Link } from 'react-router'
|
|
|
|
|
|
|
|
|
|
import { Button } from '~/components/ui/button'
|
2025-02-03 18:10:11 +08:00
|
|
|
import { APP } from '~/data/meta'
|
2025-02-01 15:52:08 +08:00
|
|
|
|
|
|
|
|
export const FooterNewsletter = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="col-span-2 grid gap-y-6">
|
|
|
|
|
<div className="h-[75px] bg-white p-3">
|
|
|
|
|
<Link
|
|
|
|
|
to="/news"
|
2025-02-02 03:15:18 +08:00
|
|
|
className="h-full"
|
2025-02-01 15:52:08 +08:00
|
|
|
>
|
|
|
|
|
<img
|
2025-02-03 13:03:49 +08:00
|
|
|
src={APP.logo}
|
|
|
|
|
alt={APP.title}
|
2025-02-01 15:52:08 +08:00
|
|
|
className="h-full w-auto"
|
|
|
|
|
/>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
2025-02-01 16:01:23 +08:00
|
|
|
<h2 className="text-4xl font-bold">Join Our Newsletter</h2>
|
|
|
|
|
<p className="text-lg">
|
2025-02-01 15:52:08 +08:00
|
|
|
Tidak ingin ketinggalan Berita Hukum terhangat? ingin mendapat informasi
|
|
|
|
|
kajian dan networking terbaru? ikuti Newsletter kami and Stay up to
|
|
|
|
|
Speed!
|
|
|
|
|
</p>
|
|
|
|
|
<form className="grid gap-5">
|
|
|
|
|
<input
|
|
|
|
|
placeholder="Daftarkan Email Disini"
|
|
|
|
|
className="h-[50px] flex-1 bg-white text-center text-lg font-light text-black placeholder:text-[#777777] focus:ring-0 focus:outline-none"
|
|
|
|
|
size={1}
|
|
|
|
|
/>
|
|
|
|
|
<Button
|
|
|
|
|
type="submit"
|
|
|
|
|
variant="newsPrimaryOutline"
|
|
|
|
|
size="block"
|
|
|
|
|
>
|
|
|
|
|
Subscribe
|
|
|
|
|
</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|