2023-09-28 20:53:41 +10:00
|
|
|
import {raleway} from "@/app/fonts";
|
|
|
|
|
|
2023-09-26 19:48:47 +10:00
|
|
|
export default function BlogFooter() {
|
2023-09-28 20:53:41 +10:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<p className={`${raleway.className} text-center text-xl my-10`}>Suyono</p>
|
|
|
|
|
<p className={`${raleway.className} text-center`}>suyono3484@gmail.com</p>
|
|
|
|
|
<p className={`${raleway.className} text-center mt-20 mb-10`}>
|
|
|
|
|
©2023 by Suyono. Built using Next.js
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2023-09-26 19:48:47 +10:00
|
|
|
}
|