updated font reference and clean up

This commit is contained in:
2023-09-28 20:53:41 +10:00
parent fca3d8bcec
commit 08db8ef124
11 changed files with 78 additions and 74 deletions

View File

@@ -1,11 +1,13 @@
import {raleway} from "@/app/fonts";
export default function BlogFooter() {
return(
<div>
<p className="text-center font-blog text-xl my-10">Suyono</p>
<p className="text-center font-blog">suyono3484@gmail.com</p>
<p className="text-center font-blog mt-20 mb-10">
&copy;2023 by Suyono. Built using Next.js
</p>
</div>
)
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`}>
&copy;2023 by Suyono. Built using Next.js
</p>
</div>
);
}