aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Landing.tsx
blob: 5eac99be45a23c20bf02c29285065f4e0fac4145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

import type { Props } from '@theme/BlogListPage';
import Layout from '@theme/Layout';

import Blog from './landing/sections/Blog';
import Contact from './landing/sections/Contact';
import Hero from './landing/sections/Hero';
import Publications from './landing/sections/Publications';
import Research from './landing/sections/Research';
import Resume from './landing/sections/Resume';
import TrackActiveSection from './TrackActiveSection';

export default function Home(props: Props) {
  return (
    <Layout>
      <TrackActiveSection>
        <Hero />
        <Research />
        <Blog {...props} />
        <Publications />
        <Resume />
        <Contact />
      </TrackActiveSection>
    </Layout>
  );
}