17 lines
524 B
TypeScript
17 lines
524 B
TypeScript
"use client";
|
|
|
|
export function Header() {
|
|
return (
|
|
<header className="bg-white border-b border-gray-200">
|
|
<div className="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8 flex flex-col sm:flex-row justify-between items-start sm:items-center">
|
|
<div>
|
|
<h1 className="text-2xl font-medium text-gray-900">Data Dashboard</h1>
|
|
<p className="text-sm text-gray-500 mt-1">
|
|
Interactive data visualization with AI assistance
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|