File size: 761 Bytes
50d83b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Link from 'next/link';

export default function ChatHeader() {
  return (
    <header className="bg-primary text-white p-4 shadow-md">
      <div className="container mx-auto flex justify-between items-center">
        <div className="flex items-center space-x-2">
          <div className="w-10 h-10 bg-white rounded-full flex items-center justify-center">
            <span className="text-primary font-bold text-lg">R</span>
          </div>
          <h1 className="text-xl font-bold">Replika Clone</h1>
        </div>
        <div className="text-sm">
          <Link href="https://huggingface.co/spaces/akhaliq/anycoder" className="hover:underline">
            Built with anycoder
          </Link>
        </div>
      </div>
    </header>
  );
}