CoolFace
Apppublic

spdniloy/anycoder-380d34cb

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Header.js32 linesDownload Raw Back to components
1import Link from 'next/link';2import { TrendingUp } from 'lucide-react';3 4export default function Header() {5  return (6    <header className="bg-white border-b border-neutral-100 sticky top-0 z-40">7      <div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">8        <div className="flex items-center justify-between h-16">9          {/* Logo */}10          <div className="flex items-center gap-3">11            <div className="p-2 bg-primary-50 rounded-lg">12              <TrendingUp className="w-6 h-6 text-primary-600" />13            </div>14            <span className="text-xl font-semibold text-neutral-800">15              ProfitFlow16            </span>17          </div>18 19          {/* Built with anycoder */}20          <a21            href="https://huggingface.co/spaces/akhaliq/anycoder"22            target="_blank"23            rel="noopener noreferrer"24            className="text-sm text-neutral-500 hover:text-primary-600 transition-colors duration-200"25          >26            Built with anycoder27          </a>28        </div>29      </div>30    </header>31  );32}