Files
graff.event/src/pages/MainPage.tsx
T

20 lines
480 B
TypeScript

import { Stands } from '../components/Stands';
import { Motivation } from '../components/Motivation';
import { Projects } from '../components/Projects';
import { Promotion } from '../components/Promotion';
import { Statistics } from '../components/Statistics';
import { Form } from '../components/Form';
export function MainPage() {
return (
<>
<Motivation />
<Promotion />
<Projects />
<Form />
<Stands />
<Statistics />
</>
);
}