* feat(landing): slicing navigation bar * feat(landing): slicing hero section * feat(landing): slicing what we offer section * feat(landing): add animation on hero and what we offer section * feat(landing): slicing testimonial section * feat(landing): change the animation for what we offer section * feat: add utility for readable looping and conditional rendering of components * feat(landing): slicing faq section * feat(landing): change border radius of card on `what we offer` and `testimonial` section * feat(landing): slicing cta section * feat: modify accordion component * feat(landing): add shape background at faq section * feat(landing): slicing footer * feat: toggle header visibility on scroll
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;
|