2022-07-05 11:53:07 +02:00
|
|
|
import React from "react";
|
2022-07-07 11:12:59 +02:00
|
|
|
import {FlexColumn} from "../utils/containers";
|
2022-07-06 17:30:47 +02:00
|
|
|
import Motivation from "../components/sections/Motivation";
|
2022-07-07 11:12:59 +02:00
|
|
|
import Csi from "../components/sections/Csi";
|
|
|
|
import Commercial from "../components/sections/Commercial";
|
|
|
|
import Hero from "../components/sections/Hero";
|
2022-07-05 11:53:07 +02:00
|
|
|
|
2022-07-06 13:49:41 +02:00
|
|
|
const LandingPage = () => {
|
2022-07-05 11:53:07 +02:00
|
|
|
return (
|
2022-07-06 17:30:47 +02:00
|
|
|
<FlexColumn alignmentY='flex-start' width='100%' minHeight='100vh' as='main' gap='48px'>
|
2022-07-07 11:12:59 +02:00
|
|
|
<Hero/>
|
2022-07-06 17:30:47 +02:00
|
|
|
<Motivation/>
|
2022-07-07 11:12:59 +02:00
|
|
|
<Csi/>
|
|
|
|
<Commercial/>
|
2022-07-05 13:49:29 +02:00
|
|
|
</FlexColumn>
|
2022-07-05 11:53:07 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default LandingPage;
|