jaecoo-cihampelas/components/landing-page/footer.tsx

137 lines
4.4 KiB
TypeScript
Raw Normal View History

2025-07-13 07:48:15 +00:00
import Image from "next/image";
2026-02-03 06:52:48 +00:00
import Link from "next/link";
2025-07-13 07:48:15 +00:00
export default function Footer() {
return (
<footer className="bg-black text-[#c7dbe3] px-6 md:px-20 py-16">
<div className="flex flex-col md:flex-row gap-10">
<div className="w-full md:w-4/12">
<Image
2026-02-02 08:08:30 +00:00
src="/jaecoobot.png"
2025-07-13 07:48:15 +00:00
alt="Jaecoo"
width={300}
height={200}
className="ml-4"
/>
2026-02-03 06:52:48 +00:00
<div className="flex gap-4 mt-6 ml-8 text-xl text-[#c7dbe3]">
<Link href={"https://www.instagram.com/jaecoocihampelasbdg"}>
<div className="hover:text-white cursor-pointer">
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
viewBox="0 0 24 24"
>
<g
fill="none"
stroke="currentColor"
// stroke-width="1.5"
>
<path
// stroke-linecap="round"
// stroke-linejoin="round"
d="M12 16a4 4 0 1 0 0-8a4 4 0 0 0 0 8"
/>
<path d="M3 16V8a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v8a5 5 0 0 1-5 5H8a5 5 0 0 1-5-5Z" />
<path
// stroke-linecap="round"
// stroke-linejoin="round"
d="m17.5 6.51l.01-.011"
/>
</g>
</svg>
</div>
</Link>
<Link href={"https://www.tiktok.com/@jaecoo.cihampelasbdg"}>
<div className="hover:text-white cursor-pointer">
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
viewBox="0 0 24 24"
2025-07-13 07:48:15 +00:00
>
<path
2026-02-03 06:52:48 +00:00
fill="currentColor"
d="M16 8.245V15.5a6.5 6.5 0 1 1-5-6.326v3.163a3.5 3.5 0 1 0 2 3.163V2h3a5 5 0 0 0 5 5v3a7.97 7.97 0 0 1-5-1.755"
2025-07-13 07:48:15 +00:00
/>
2026-02-03 06:52:48 +00:00
</svg>
</div>
</Link>
2025-07-13 07:48:15 +00:00
</div>
</div>
<div className="md:w-8/12 ">
<div className="flex flex-wrap md:flex-row gap-10 md:gap-28">
<div>
<h4 className="font-semibold text-white mb-4">ABOUT</h4>
<ul className="space-y-4 text-sm">
<li>
<a href="#">Partnership</a>
</li>
<li>
<a href="#">Terms of Use</a>
</li>
<li>
<a href="#">Privacy</a>
</li>
</ul>
</div>
<div>
<h4 className="font-semibold text-white mb-4">PRODUCT</h4>
<ul className="space-y-4 text-sm">
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Features</a>
</li>
<li>
<a href="#">Support</a>
</li>
</ul>
</div>
<div>
<h4 className="font-semibold text-white mb-4">RESOURCES</h4>
<ul className="space-y-4 text-sm">
<li>
<a href="#">Career</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Legal</a>
</li>
</ul>
</div>
<div>
<h4 className="font-semibold text-white mb-4">CONTACT</h4>
<ul className="space-y-4 text-sm">
<li>
2026-02-03 06:52:48 +00:00
<a
href="mailto:jaecoocihampelas@gmail.com"
className="hover:underline"
>
jaecoocihampelas@gmail.com
2025-07-13 07:48:15 +00:00
</a>
</li>
2026-02-03 06:52:48 +00:00
2025-08-05 09:28:40 +00:00
<li>0817 222190</li>
2025-07-13 07:48:15 +00:00
<li>
<p className="font-semibold text-white">Jaecoo Bandung</p>
<p className="w-8/12">
Jaecoo Cihampelas Bandung, Jl. Cihampelas No. 264-268,
<br />
Bandung, Jawa Barat 40131
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
);
}