2022-11-17 12:25:23 +00:00
|
|
|
import Section1 from "./Section1";
|
|
|
|
import Section2 from "./Section2";
|
|
|
|
import Section3 from "./Section3";
|
|
|
|
import Section4 from "./Section4";
|
|
|
|
import Section5 from "./Section5";
|
|
|
|
|
|
|
|
|
|
|
|
export default function Landing() {
|
|
|
|
|
|
|
|
return (
|
2022-11-18 17:45:56 +00:00
|
|
|
<main>
|
2022-11-17 12:25:23 +00:00
|
|
|
<Section1 />
|
|
|
|
<Section2 />
|
|
|
|
<Section3 />
|
|
|
|
<Section4 />
|
|
|
|
<Section5 />
|
2022-11-18 17:45:56 +00:00
|
|
|
</main>
|
2022-11-17 12:25:23 +00:00
|
|
|
);
|
|
|
|
}
|