2025-03-30 16:42:51 -03:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
export function MainNav() {
|
|
|
|
return (
|
2025-03-30 19:28:28 -03:00
|
|
|
<nav className="flex space-x-4">
|
|
|
|
{['Overview', 'Customers', 'Products', 'Settings'].map((item) => (
|
|
|
|
<button
|
|
|
|
key={item}
|
|
|
|
className="px-3 py-2 text-sm font-medium hover:text-primary"
|
|
|
|
>
|
|
|
|
{item}
|
|
|
|
</button>
|
|
|
|
))}
|
|
|
|
</nav>
|
2025-03-30 16:42:51 -03:00
|
|
|
);
|
|
|
|
}
|