2025-07-07 18:28:22 +05:30

69 lines
2.5 KiB
TypeScript

import Layout from "@/components/layout/Layout"
import Popup from '@/components/layout/Popup'
import Section1 from '@/components/sections/home9/section1'
import Section2 from '@/components/sections/home3/section2'
import Section22 from '@/components/sections/home9/section2'
import Section3 from '@/components/sections/home1/section3'
import Section4 from '@/components/sections/home1/section4'
import Section5 from '@/components/sections/home10/section5'
import Section6 from '@/components/sections/home3/section6'
import Section7 from '@/components/sections/home3/section7'
import Section8 from '@/components/sections/home1/section8'
import Section9 from '@/components/sections/home1/section9'
import AboutSection from '@/components/home/AboutSection'
import ArtAndCultureSection from '@/components/home/ArtsAndCultureSection'
import AdSectionOne from "@/components/home/AdSectionOne"
import AdSectionTwo from "@/components/home/AdSectionFive"
import FoodSection from "@/components/home/FoodSection"
import AdSectionThree from "@/components/home/AdSectionThree"
import HaritageAndLanguage from "@/components/home/HaritageAndLanguage"
import AdSectionFour from "@/components/home/AdSectionFour"
import BlogSection from "@/components/home/BlogSection"
import HomeHeroBanner from "@/components/home/HeroBanner"
import HomeSlogan from '@/components/home/HomeSlogan'
import HomeCommunitySection from '@/components/home/HomeCommunitySection'
import HomeUpcomingEvent from "@/components/home/HomeUpcomingEvent"
import HomeWhyChooseUs from "@/components/home/HomeWhyChooseus"
import HomePhotoGallerySection from "@/components/home/HomePhotoGallerySection"
import AdSectionFive from "@/components/home/AdSectionFive"
import HeritageLanguage from "@/components/heritage-language/heritage-language"
import Food from "@/components/community/food/food"
export default function Home() {
return (
<>
<Layout headerStyle={1} footerStyle={1}>
<HomeHeroBanner />
<AboutSection />
<AdSectionOne />
<ArtAndCultureSection />
{/* <HeritageLanguage /> */}
{/* <Food /> */}
<HomeSlogan />
<HomeCommunitySection />
<AdSectionFive />
<HomeUpcomingEvent />
<HomeWhyChooseUs />
{/* <Section7 /> */}
{/* <FoodSection /> */}
<AdSectionThree />
<HomePhotoGallerySection />
{/* <HaritageAndLanguage />
<AdSectionFour />
<BlogSection /> */}
{/* <Section3 />
<Section4 />
<Section5 />
<Section6 />
<Section7 />
<Section8 />
<Section9 /> */}
</Layout>
{/* <Popup /> */}
</>
)
}