13 lines
425 B
TypeScript
13 lines
425 B
TypeScript
import {raleway} from "@/app/fonts";
|
|
|
|
export default function BlogFooter() {
|
|
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>
|
|
);
|
|
} |