mirror of
https://github.com/Nezumi-2711/onedrive-vercel-index.git
synced 2026-09-22 13:38:45 +00:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import siteConfig from '../config/site.json'
|
|
|
|
const Navbar = () => {
|
|
return (
|
|
<div className="text-left bg-white p-2">
|
|
<div className="max-w-4xl w-full mx-auto">
|
|
<h1 className="font-bold text-lg">{siteConfig.title}</h1>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|