mirror of
https://github.com/Nezumi-2711/onedrive-vercel-index.git
synced 2026-09-22 13:38:45 +00:00
24 lines
757 B
TypeScript
24 lines
757 B
TypeScript
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
import siteConfig from '../config/site.json'
|
|
|
|
const Navbar = () => {
|
|
return (
|
|
<div className="text-left bg-white dark:bg-gray-900 p-3 sticky top-0 bg-opacity-80 backdrop-blur-md shadow-sm z-[100]">
|
|
<div className="max-w-4xl w-full mx-auto flex items-center justify-between">
|
|
<h1 className="font-bold text-xl dark:text-white">{siteConfig.title}</h1>
|
|
<a
|
|
href="https://github.com/spencerwooo/onedrive-vercel-index"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="dark:text-white"
|
|
>
|
|
<FontAwesomeIcon icon={['fab', 'github']} size="lg" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|