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

import Layout from '@theme/Layout';

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 Software from '@site/src/components/landing/sections/Software';
import Section from '@site/src/components/landing/Section';
import TrackActiveSection from '@site/src/components/TrackActiveSection';

import avatar from '@site/src/pages/avatar.jpg';

export default function Home() {
  return (
    <Layout>
      <TrackActiveSection>
        <Hero avatar={avatar} />
        <Research />
        <Publications />
        <Software />
        <Resume />
        <Section id="contact" title="Contact" />
      </TrackActiveSection>
    </Layout>
  );
}