updated font reference and clean up
This commit is contained in:
@@ -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