'use client'; import Image from 'next/image'; import { IconButton } from '@/components/ui/button'; import Link from 'next/link'; import React from 'react'; import { useLayoutStore } from '@/stores'; const Header = React.memo(() => { const response = useLayoutStore((s) => s.response); return ( //
header-bg
Check-in{' '} header-bg
Daily Free crush coinsh
{response?.lg && ( banner-header )}
// ); }); export default Header;