blog.hangerthem.com/components/layout/Sidebar.tsx

26 lines
692 B
TypeScript

export function Sidebar() {
return (
<aside className="hidden lg:block w-64 shrink-0">
<div className="sticky top-6">
<h2 className="text-lg font-bold mb-4">Navigation</h2>
<ul className="space-y-2">
<li>
<a href="/" className="text-blue-500 hover:underline">
Home
</a>
</li>
<li>
<a href="/about" className="text-blue-500 hover:underline">
About
</a>
</li>
<li>
<a href="/contact" className="text-blue-500 hover:underline">
Contact
</a>
</li>
</ul>
</div>
</aside>
)
}