web-berita-bumn/components/landing-page/footer.tsx

70 lines
2.3 KiB
TypeScript
Raw Normal View History

2025-12-11 05:45:16 +00:00
// components/Footer.tsx
2025-09-23 01:30:16 +00:00
import Image from "next/image";
2025-12-11 05:45:16 +00:00
import { Facebook, Twitter, Instagram, Youtube } from "lucide-react";
2025-09-23 02:37:12 +00:00
import Link from "next/link";
2025-09-23 01:30:16 +00:00
export default function Footer() {
return (
2025-12-11 05:45:16 +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 items-center justify-end">
<div className="flex justify-center md:justify-end">
<Image
2026-01-30 11:00:19 +00:00
src="/berita-bumn-logo.png"
2025-12-11 05:45:16 +00:00
alt="Logo"
width={230}
height={230}
className="object-contain"
/>
</div>
2025-09-23 01:30:16 +00:00
</div>
2025-12-11 05:45:16 +00:00
{/* Subscribe Box */}
<div className="flex justify-end md:justify-end pl-5">
<div className=" w-full ml-5">
<h2 className="text-2xl font-semibold text-gray-800 leading-snug">
Subscribe us to get <br />
the latest news!
</h2>
2025-09-23 01:30:16 +00:00
2025-12-11 05:45:16 +00:00
<label className="block mt-6 mb-1 text-sm text-gray-600">
Email address:
</label>
<input
type="email"
placeholder="Your email address"
className="w-full border border-gray-300 rounded-md px-4 py-3 outline-none"
/>
2025-09-23 01:30:16 +00:00
2026-01-30 11:00:19 +00:00
<button className="mt-4 bg-blue-600 hover:bg-blue-500 text-white px-6 py-3 rounded-md font-medium">
2025-12-11 05:45:16 +00:00
SIGN UP
</button>
</div>
2025-09-23 01:30:16 +00:00
</div>
</div>
2025-09-23 02:37:12 +00:00
2025-12-11 05:45:16 +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>
2025-09-23 02:37:12 +00:00
</div>
2025-12-11 05:45:16 +00:00
<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">
2026-01-30 11:00:19 +00:00
© 2025 Berita Bumn - All Rights Reserved.
2025-12-11 05:45:16 +00:00
</p>
2025-09-23 01:30:16 +00:00
</footer>
);
}