Files
c5e4dff6-dd78-466c-a65d-dce…/src/components/Header.tsx
“dongming” ed40350aeb first commit
2025-12-28 22:43:26 +08:00

20 lines
698 B
TypeScript

import React from 'react'
export const Header: React.FC = () => {
return (
<header className="bg-white border-b border-gray-200 sticky top-0 z-10">
<div className="container mx-auto px-4 py-4">
<div className="flex items-center justify-between">
<h1 className="text-2xl font-bold text-gray-900">
TenantCMS <span className="text-blue-600">Demo</span>
</h1>
<nav className="flex items-center gap-4">
<a href="/" className="text-gray-600 hover:text-gray-900"></a>
<a href="/categories" className="text-gray-600 hover:text-gray-900"></a>
</nav>
</div>
</div>
</header>
)
}