21 lines
595 B
TypeScript
21 lines
595 B
TypeScript
import { FC, ReactElement } from 'react';
|
|||
|
|
import { HeroSection } from './_components/hero-section';
|
||
|
|
import { WhatWeOfferSection } from './_components/what-we-offer-section';
|
||
|
|
import { TestimonialSection } from './_components/testimonial-section';
|
||
|
|
import { FAQSection } from './_components/faq-section';
|
||
|
|
import { CTASection } from './_components/cta-section';
|
||
|
|
|
||
|
|
export const Components: FC = (): ReactElement => {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<HeroSection />
|
||
|
|
<WhatWeOfferSection />
|
||
|
|
<TestimonialSection />
|
||
|
|
<FAQSection />
|
||
|
|
<CTASection />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Components;
|