/* Shared small components — corporate nav version */ const Arrow = ({dir='r'}) => ( {dir === 'r' && } {dir === 'l' && } {dir === 'd' && } ); const Placeholder = ({ tag, dark=false, style, className='' }) => (
{tag}
); const Eyebrow = ({ children, style }) => {children}; /** Global nav — pages, not anchors */ const NAV = [ { href: 'index.html', label: 'ホーム', sub: '当社の想い' }, { href: 'service.html', label: 'サービス', sub: 'Services' }, { href: 'about.html', label: '会社概要', sub: 'About' }, { href: '../blog.html', label: 'ブログ', sub: 'Journal', external: true }, { href: 'contact.html', label: 'お問い合わせ', sub: 'Contact' } ]; const Topbar = ({ current='index.html' }) => (
社会保険労務士法人 労務ニュース 株式会社 労務ニュース
株式会社 労務ニュース
無料相談を予約
); /** Page hero — lighter than LP hero, still branded */ const PageHero = ({ kicker, title, lead }) => (
{kicker}

{title}

{lead &&

{lead}

}
); /** Breadcrumb */ const Breadcrumb = ({ trail }) => ( ); const StickyCTA = () => (
電話で相談050-5784-3633 無料で相談する平日 9:00–18:00
); const Footer = () => ( ); Object.assign(window, { Arrow, Placeholder, Eyebrow, Topbar, PageHero, Breadcrumb, StickyCTA, Footer });