Add google fonts

* add title RUA!
This commit is contained in:
Defectink
2022-03-21 16:15:18 +08:00
parent 7e3030bd01
commit 8483b4fb14
5 changed files with 48 additions and 3 deletions

View File

@ -1,3 +1,4 @@
import cn from 'classnames';
import Link from 'next/link';
import { FC } from 'react';
@ -5,7 +6,18 @@ const HeadBar: FC = () => {
return (
<>
<header className="flex justify-between max-w-6xl px-6 py-6 mx-auto">
<Link href="/">RUARUARUA</Link>
<Link href="/" passHref>
<a
href=""
className={cn(
'font-semibold font-Aref-Ruqaa',
'text-gray-600 text-3xl tracking-widest',
'select-none'
)}
>
RUA!
</a>
</Link>
<div></div>
</header>