'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'; import { useTranslations } from 'next-intl'; const Header = React.memo(() => { const response = useLayoutStore((s) => s.response); const t = useTranslations('home'); return (
header-bg
{t('check_in')}{' '} header-bg
{t('check_in_desc')}
{response?.lg && ( banner-header )}
); }); export default Header;