## Description <!-- Insert PR description--> ## Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [x] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [ ] 💻 CI/Deployment - [ ] 🐹 Trivial/Minor ## Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> * #<issue> ## Test Plan <!-- How will this be tested prior to merging.--> - [ ] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
24 lines
506 B
JavaScript
24 lines
506 B
JavaScript
import React from "react";
|
|
import "animate.css";
|
|
import loadable from "@loadable/component";
|
|
import Hero from "./Hero";
|
|
import Demo from "./Demo";
|
|
import FourthSection from "./FourthSection";
|
|
import Cookies from "./Cookies";
|
|
import KeyLoveFAQ from "./KeyLoveFAQ";
|
|
|
|
const BackToTopComp = loadable(() => import("./BackToTop"));
|
|
|
|
export function MainComp() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Demo />
|
|
<KeyLoveFAQ />
|
|
<FourthSection />
|
|
<BackToTopComp />
|
|
<Cookies />
|
|
</>
|
|
);
|
|
}
|