32 lines
2.0 KiB
TypeScript
32 lines
2.0 KiB
TypeScript
import SpreadFeatures from './sections/SpreadFeatures'
|
|
import IntegrationsSection from './sections/IntegrationsSection'
|
|
// import InternalNewsSection from './sections/InternalNewsSection' // «تازهترین اخبار صنعت» — disabled, restore anytime
|
|
import RadarTechSection from './sections/RadarTechSection'
|
|
import AtAGlanceSection from './sections/AtAGlanceSection'
|
|
import FeaturedReportBanner from './sections/FeaturedReportBanner'
|
|
import MapEventsSection from './sections/MapEventsSection'
|
|
import FactoryReportsScroll from './sections/FactoryReportsScroll'
|
|
import VideocastPodcastSection from './sections/VideocastPodcastSection'
|
|
// import RiskSection from './sections/RiskSection' // «نقشه ریسک صنعت» — disabled, restore anytime
|
|
import { useLang } from '@/context/LangContext'
|
|
|
|
/* ─── Home page ──────────────────────────────────────── */
|
|
export default function Home() {
|
|
const { lang } = useLang()
|
|
return (
|
|
<div dir={lang === 'fa' ? 'rtl' : 'ltr'}>
|
|
<SpreadFeatures /> {/* هیرو */}
|
|
<RadarTechSection only="radar" /> {/* رادار آینده */}
|
|
<RadarTechSection only="approach" /> {/* چارچوب اندیشه ما */}
|
|
<IntegrationsSection /> {/* آمار و داده — نبض صنعت */}
|
|
<AtAGlanceSection /> {/* در یک نگاه */}
|
|
<MapEventsSection /> {/* دیدهبان رویدادها */}
|
|
<FeaturedReportBanner /> {/* دیپلماسی (گزارش ویژه) */}
|
|
<FactoryReportsScroll /> {/* ماهنامه تحلیلی کارخانه */}
|
|
<VideocastPodcastSection only="video" /> {/* ویدیوکست */}
|
|
<FeaturedReportBanner position="media-split" />
|
|
<VideocastPodcastSection only="pod" /> {/* پادکست */}
|
|
</div>
|
|
)
|
|
}
|