You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
SGPT/src/pages/SGPTProducts/Healthcare.tsx

30 lines
1.3 KiB

import BackToTopButton from "../../shared/components/backtotop";
import Approach from "../../shared/components/healthcare/HowItWorksSection";
import Competitions from "../../shared/components/healthcare/BuildForGrowth";
import CustomerInsight from "../../shared/components/healthcare/MassAdoptionSection";
import FirstSection from "../../shared/components/healthcare/FirstSection";
import SectionSection from "../../shared/components/healthcare/SecondSection";
import ProblemsSection from "../../shared/components/healthcare/SecondSection";
import SolutionsOfProduct from "../../shared/components/healthcare/JoinACommunityOfMillions";
import MassAdoptionSection from "../../shared/components/healthcare/MassAdoptionSection";
import HowItWorksSection from "../../shared/components/healthcare/HowItWorksSection";
import BuildForGrowth from "../../shared/components/healthcare/BuildForGrowth";
import JoinACommunityOfMillions from "../../shared/components/healthcare/JoinACommunityOfMillions";
type Props = {};
const Healthcare = (props: Props) => {
return (
<div className="flex flex-col">
<FirstSection />
<SectionSection />
<MassAdoptionSection />
<HowItWorksSection/>
<BuildForGrowth />
<JoinACommunityOfMillions />
<BackToTopButton />
</div>
);
};
export default Healthcare;