blob: 4284dcf8c13e236c53cba74ed5bcd07e3b323891 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
import Twitter from "./media/twitter";
import Instagram from "./media/instagram";
import Link from "next/link";
import Image from "next/image";
function Footer() {
return (
<section className=" text-white z-40 bg-black md:flex md:h-[14rem] md:items-center md:justify-between">
<div className="mx-auto flex w-[78%] flex-col space-y-10 py-10 md:flex-row md:items-center md:justify-between md:space-y-0 md:py-0">
<div className="md:flex md:flex-col md:gap-y-[3.88rem]">
<h1 className="font-outfit text-[2.56rem]">moopa</h1>
<p className="flex items-center gap-1 font-karla text-[0.81rem] text-[#CCCCCC]">
© {new Date().getFullYear()} moopa.my.id | Website Made by
Factiven
</p>
</div>
<div className="">
<Image
src="https://i1210.photobucket.com/albums/cc417/kusanagiblog/NarutoVSSasuke.gif"
alt="gambar"
title="request nya rapip yulistian"
width={210}
height={85}
/>
</div>
<div className="flex flex-col gap-10 md:flex-row md:items-end md:gap-[9.06rem] ">
<div className="flex flex-col gap-10 font-karla font-bold md:flex-row md:gap-[5.94rem]">
<ul className="flex flex-col gap-y-[0.7rem] ">
<li className="cursor-pointer hover:text-cyan-500">
<a href="https://github.com/AniList/ApiV2-GraphQL-Docs">API</a>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<Link href="/staff">Staff</Link>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<Link href="/contact">Contact</Link>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<Link href="/dmca">DMCA</Link>
</li>
</ul>
<ul className="flex flex-col gap-y-[0.7rem]">
<li className="cursor-pointer hover:text-cyan-500">
<a href="https://discord.gg/v5fjSdKwr2">Discord</a>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<a href="https://www.instagram.com/dvnabny/">Instagram</a>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<a href="https://twitter.com/Factivens">Twitter</a>
</li>
<li className="cursor-pointer hover:text-cyan-500">
<a href="https://github.com/DevanAbinaya">Github</a>
</li>
</ul>
</div>
<div className="flex gap-[0.69rem]">
<div>
<Link href="https://twitter.com/Factivens">
<Twitter className="fill-[#4CFFFF]" />
</Link>
</div>
<div>
<Link href="https://www.instagram.com/dvnabny/">
<Instagram className="fill-white" />
</Link>
</div>
</div>
</div>
</div>
</section>
);
}
export default Footer;
|