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

export default function TmaHeader() {
  return (
    <header className="bg-tg-bg border-b border-tg-border sticky top-0 z-50">
      <div className="max-w-md mx-auto px-4 py-3 flex items-center justify-between">
        <h1 className="text-xl font-bold text-tg-text">Telegram MiniApp</h1>
        <Link 
          href="https://huggingface.co/spaces/akhaliq/anycoder" 
          target="_blank" 
          rel="noopener noreferrer"
          className="text-sm font-medium text-tg-link hover:underline"
        >
          Built with anycoder
        </Link>
      </div>
    </header>
  );
}