feat: mobile style

This commit is contained in:
shinya
2025-06-22 23:48:02 +08:00
parent dbae421973
commit e25671eed2
13 changed files with 200 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
import Link from 'next/link';
const MobileHeader = () => {
return (
<header className='md:hidden w-full bg-white/70 backdrop-blur-xl border-b border-gray-200/50 shadow-sm'>
<div className='h-12 flex items-center justify-center'>
<Link
href='/'
className='text-2xl font-bold text-green-600 tracking-tight hover:opacity-80 transition-opacity'
>
MoonTV
</Link>
</div>
</header>
);
};
export default MobileHeader;