import { ReactNode } from "react"; import { useBannerSize, useBannerStore } from "@/stores/banner"; import { BannerLocation } from "@/stores/banner/BannerLocation"; export function Layout(props: { children: ReactNode }) { const bannerSize = useBannerSize(); const location = useBannerStore((s) => s.location); return (