web-warga-bicara/components/landing-page/footer.tsx

67 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2025-10-20 02:53:39 +00:00
// components/Footer.tsx
2026-02-02 03:07:09 +00:00
import Image from "next/image";
import { Facebook, Twitter, Instagram, Youtube } from "lucide-react";
2025-10-20 02:53:39 +00:00
export default function Footer() {
return (
2026-02-02 03:07:09 +00:00
<footer className="bg-[#ECEFF5] pt-20 pb-10 w-full">
<div className="max-w-screen-xl mx-auto px-6 grid grid-cols-1 md:grid-cols-2 ">
{/* Logo */}
<div className="flex justify-center md:justify-end">
<Image
src="/wargabicara-logo.png"
alt="Logo"
width={230}
height={230}
className="object-contain"
/>
2025-10-20 02:53:39 +00:00
</div>
2026-02-02 03:07:09 +00:00
{/* Subscribe Box */}
<div className="flex justify-center md:justify-end">
<div className=" p-8 w-full md:w-[420px]">
<h2 className="text-2xl font-semibold text-gray-800 leading-snug">
Subscribe us to get <br />
the latest news!
</h2>
2025-10-20 02:53:39 +00:00
2026-02-02 03:07:09 +00:00
<label className="block mt-6 mb-1 text-sm text-gray-600">
Email address:
</label>
2025-10-20 02:53:39 +00:00
2026-02-02 03:07:09 +00:00
<input
type="email"
placeholder="Your email address"
className="w-full border border-gray-300 rounded-md px-4 py-3 outline-none"
/>
<button className="mt-4 bg-green-600 hover:bg-green-500 text-white px-6 py-3 rounded-md font-medium">
SIGN UP
</button>
2025-10-20 02:53:39 +00:00
</div>
</div>
</div>
2026-02-02 03:07:09 +00:00
<div className="flex flex-wrap justify-center gap-8 mt-16 text-gray-600 text-sm">
<a href="#">About Us</a>
<a href="#">Contact</a>
<a href="#">Kode Etik Jurnalistik</a>
<a href="#">Kebijakan Privasi</a>
<a href="#">Disclaimer</a>
<a href="#">Pedoman Media Siber</a>
</div>
<div className="flex justify-center gap-8 mt-8 text-gray-700">
<Facebook className="w-5 h-5 cursor-pointer" />
<Twitter className="w-5 h-5 cursor-pointer" />
<Instagram className="w-5 h-5 cursor-pointer" />
<Youtube className="w-5 h-5 cursor-pointer" />
</div>
<p className="text-start text-gray-500 text-sm mt-8 pl-5">
© 2025 Warga Bicara - All Rights Reserved.
</p>
2025-10-20 02:53:39 +00:00
</footer>
);
}