Add logo to home page

This commit is contained in:
2023-09-05 22:55:20 +08:00
parent 54b10d2c31
commit af2ca2888b
4 changed files with 32 additions and 43 deletions

View File

@@ -1,9 +1,14 @@
import React from 'react'
import '@/assets/css/home.scss'
const Home: React.FC = () => {
return (
<>
<h1>FatWeb</h1>
<header className={'nav'}>
<a className={'logo'} href={'https://fatweb.top'}>
<span className={'title'}>FatWeb</span>
</a>
</header>
</>
)
}