import { Link, Outlet, useLocation } from 'react-router-dom' import { brand, contact, haoke, hero, images, partner, poetry, qingxiang, subsidy, system, tech, techDetail, } from '../content/site' import './MobileViews.css' export function MobileViews() { const location = useLocation() const path = location.pathname switch (path) { case '/': return case '/brand': return case '/poetry': return case '/qingxiang': return case '/haoke': return case '/system': return case '/tech': return case '/subsidy': return case '/partner': return case '/tech-detail': return case '/contact': return default: return } } /* 1. Mobile Home View */ function MobileHomeView() { return (
{hero.subBrand} · 移动全景

{hero.brand}

{hero.title}

酒祖杜康 T30

{hero.subtitle}

{hero.primaryCta.label} {hero.secondaryCta.label}
) } /* 2. Mobile Brand View */ function MobileBrandView() { return (
{brand.eyebrow}

{brand.title}

{brand.lead}

{brand.cards.map((card, idx) => (
0{idx + 1}

{card.title}

{card.text}

))}

故里文明印记

杜康庄园
{brand.timeline.map((item) => (
{item}
))}
{brand.closing}
深度阅读
{brand.deepReads.map((dp) => ( {dp.label} › {dp.blurb} ))}
) } /* 3. Mobile Poetry View */ function MobilePoetryView() { return (
{poetry.eyebrow}

{poetry.title}

{poetry.lead}

“{poetry.mainPoem.quote}”

—— {poetry.mainPoem.source}
{poetry.poems.map((p) => (

“{p.quote}”

—— {p.source}
))}
{poetry.closing}
诗酒专题
{poetry.deepReads.map((dp) => ( {dp.label} › {dp.blurb} ))}
) } /* 4. Mobile Qingxiang View */ function MobileQingxiangView() { return (
{qingxiang.eyebrow}

{qingxiang.title}

{qingxiang.lead}

酒祖杜康清香 T30
{qingxiang.styleWords.map((word) => (
{word}
))}
{qingxiang.positions.map((pos) => (

{pos.title}

{pos.text}

))}

品鉴仪式 · 抿咂呵

{qingxiang.tasting.map((t) => (
{t.title}: {t.text}
))}
{qingxiang.mission}
清香宝典专题
{qingxiang.deepReads.map((dp) => ( {dp.label} › {dp.blurb} ))}
) } /* 5. Mobile Haoke View */ function MobileHaokeView() { return (
{haoke.eyebrow}

{haoke.title}

{haoke.lead}

核心商业机制

{haoke.oneLiner}

{haoke.points.map((pt) => (

{pt.title}

{pt.text}

))}
{haoke.closing}
) } /* 6. Mobile System View */ function MobileSystemView() { return (
{system.eyebrow}

{system.title}

{system.lead}

{system.ends.map((end) => (

{end.title}

{end.role}

核心能力:{end.caps}
))}
闭环链路

{system.loop}

{system.closing}
) } /* 7. Mobile Tech View */ function MobileTechView() { return (
{tech.eyebrow}

{tech.title}

{tech.lead}

{tech.points.map((pt) => (

{pt.title}

{pt.text}

))}
{tech.claim}
{tech.cta.label}
) } /* 8. Mobile Subsidy View */ function MobileSubsidyView() { return (
{subsidy.eyebrow}

{subsidy.title}

{subsidy.subtitle}

{subsidy.lead}

专项补贴规模
{subsidy.number}

{subsidy.numberNote}

{subsidy.points.map((pt) => (

{pt.title}

{pt.text}

))}
{subsidy.closing}
) } /* 9. Mobile Partner View */ function MobilePartnerView() { return (
{partner.eyebrow}

{partner.title}

{partner.lead}

{partner.points.map((pt) => (

{pt.title}

{pt.text}

))}
{partner.primaryCta.label} {partner.secondaryCta.label}
) } /* 10. Mobile Tech Detail View */ function MobileTechDetailView() { return (
{techDetail.eyebrow}

{techDetail.title}

{techDetail.lead}

{techDetail.ports.map((port) => (

{port.title}

{port.text}

))}
{techDetail.closing}
) } /* 11. Mobile Contact View */ function MobileContactView() { return (
{contact.eyebrow}

{contact.title}

{contact.lead}

微信二维码

{contact.name}

{contact.role}
📞 {contact.phone}

{contact.wechatHint}

) }