'use client' import { useHeaderStore } from '@/store/header' import { useSideNavState } from '@/store/sideNavState' import { usePathname, useRouter } from 'next/navigation' import { useEffect } from 'react' export default function Main() { const router = useRouter() const pathname = usePathname() const { setBackBtn } = useHeaderStore() const { reset } = useSideNavState() /** * 헤더 뒤로가기 버튼 컨트롤 * 사이드바 초기화 컨트롤 */ useEffect(() => { if (pathname === '/') { setBackBtn(false) } //사이드바 초기화 reset() }, [pathname]) return ( <>
屋根材の照会
ご使用の屋根材の適合性をご確認いただけます
調査物件一覧
作成物件確認
調査物件登録
新規物件作成
1:1お問い合わせ リスト
作成問い合わせの確認
1:1問い合わせ登録
新規お問い合わせの 作成
) }