updated font reference and clean up
This commit is contained in:
@@ -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">
|
||||
©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`}>
|
||||
©2023 by Suyono. Built using Next.js
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,20 +1,21 @@
|
||||
import Link from "next/link";
|
||||
import { raleway }from "@/app/fonts";
|
||||
|
||||
export default function BlogHeader() {
|
||||
return(
|
||||
<div>
|
||||
<div className="ml-20 py-8">
|
||||
<p className="font-blog text-2xl font-thin">SUYONO</p>
|
||||
<p className={`${raleway.className} text-2xl font-thin`}>SUYONO</p>
|
||||
</div>
|
||||
<div className="bg-gray-100">
|
||||
<div className="flex flex-row ml-20">
|
||||
<Link href="/" className="m-2 font-thin text-sm font-blog">
|
||||
<Link href="/" className={`${raleway.className} m-2 font-thin text-sm`}>
|
||||
Home
|
||||
</Link>
|
||||
<Link href="/about" className="m-2 font-thin text-sm font-blog">
|
||||
<Link href="/about" className={`${raleway.className} m-2 font-thin text-sm`}>
|
||||
About
|
||||
</Link>
|
||||
<Link href="/blog" className="m-2 font-thin text-sm font-blog">
|
||||
<Link href="/blog" className={`${raleway.className} m-2 font-thin text-sm`}>
|
||||
Blog
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user