aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
blob: 60f86ca89e49ed61eb2ce5e7a1ebecf1be7cb916 (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
/*
 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

import Layout from '@theme/Layout';

import Contact from '@site/src/components/landing/sections/Contact';
import Hero from '@site/src/components/landing/sections/Hero';
import Publications from '@site/src/components/landing/sections/Publications';
import Research from '@site/src/components/landing/sections/Research';
import Resume from '@site/src/components/landing/sections/Resume';
import TrackActiveSection from '@site/src/components/TrackActiveSection';

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