aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Landing.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Landing.tsx')
-rw-r--r--src/components/Landing.tsx31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/components/Landing.tsx b/src/components/Landing.tsx
new file mode 100644
index 0000000..5eac99b
--- /dev/null
+++ b/src/components/Landing.tsx
@@ -0,0 +1,31 @@
1/*
2 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7import type { Props } from '@theme/BlogListPage';
8import Layout from '@theme/Layout';
9
10import Blog from './landing/sections/Blog';
11import Contact from './landing/sections/Contact';
12import Hero from './landing/sections/Hero';
13import Publications from './landing/sections/Publications';
14import Research from './landing/sections/Research';
15import Resume from './landing/sections/Resume';
16import TrackActiveSection from './TrackActiveSection';
17
18export default function Home(props: Props) {
19 return (
20 <Layout>
21 <TrackActiveSection>
22 <Hero />
23 <Research />
24 <Blog {...props} />
25 <Publications />
26 <Resume />
27 <Contact />
28 </TrackActiveSection>
29 </Layout>
30 );
31}