aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
blob: b8e986da769cbec0c633c5340160bc8b775beab8 (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
/*
 * 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 Resume from '@site/src/components/landing/sections/Resume';
import Section from '@site/src/components/landing/Section';

import avatar from './avatar.jpg';

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