33 lines
1.7 KiB
TypeScript
33 lines
1.7 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 />
|
|
{/* <InternalNewsSection /> «تازهترین اخبار صنعت» — disabled, restore anytime */}
|
|
<RadarTechSection only="radar" />
|
|
<AtAGlanceSection />
|
|
<RadarTechSection only="approach" />
|
|
<FeaturedReportBanner />
|
|
<IntegrationsSection />
|
|
<MapEventsSection />
|
|
<FactoryReportsScroll />
|
|
<VideocastPodcastSection only="video" />
|
|
<VideocastPodcastSection only="pod" />
|
|
{/* <RiskSection /> «نقشه ریسک صنعت» — disabled, restore anytime */}
|
|
</div>
|
|
)
|
|
}
|