2023-12-03 23:02:09 +07:00
|
|
|
|
"use client"
|
|
|
|
|
import Link from "next/link"
|
|
|
|
|
import React, {useState} from "react"
|
|
|
|
|
|
|
|
|
|
const Footer = () => {
|
|
|
|
|
const links = [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
text: "GitHub",
|
|
|
|
|
link: "https://github.com/WinsDominoes"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
text: "Mastodon",
|
|
|
|
|
link: "https://social.winscloud.net/WinsDominoes"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
text: "Matrix",
|
|
|
|
|
link: ""
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-2 place-items-center mt-8 border-t w-full border-gray-700">
|
|
|
|
|
<div className="mt-4">
|
2023-12-03 23:16:22 +07:00
|
|
|
|
<p className="text-xl px-4 cursor-pointer capitalize font-medium text-black dark:text-gray-300">Win Pattanaphol</p>
|
2023-12-03 23:02:09 +07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
2023-12-22 23:24:29 +07:00
|
|
|
|
<p className="text-sm px-4 cursor-pointer font-medium text-black dark:text-gray-300">Made with ❤️, <Link href="https://github.com/WinsDominoes/website" className="font-bold">open-source</Link> and self-hosted by me!</p>
|
2023-12-03 23:02:09 +07:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Footer;
|