21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
|
|
import HeroSection from '@/components/HeroSection'
|
||
|
|
import AboutSection from '@/components/AboutSection'
|
||
|
|
import ServicesSection from '@/components/ServicesSection'
|
||
|
|
import TrustIndicators from '@/components/TrustIndicators'
|
||
|
|
import ContactSection from '@/components/ContactSection'
|
||
|
|
import Footer from '@/components/Footer'
|
||
|
|
|
||
|
|
export default function HomePage() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<main>
|
||
|
|
<HeroSection />
|
||
|
|
<AboutSection />
|
||
|
|
<ServicesSection />
|
||
|
|
<TrustIndicators />
|
||
|
|
<ContactSection />
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|