aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/index.tsx')
-rw-r--r--src/pages/index.tsx10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 125c5d3..60f86ca 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -6,26 +6,22 @@
6 6
7import Layout from '@theme/Layout'; 7import Layout from '@theme/Layout';
8 8
9import Contact from '@site/src/components/landing/sections/Contact';
9import Hero from '@site/src/components/landing/sections/Hero'; 10import Hero from '@site/src/components/landing/sections/Hero';
10import Publications from '@site/src/components/landing/sections/Publications'; 11import Publications from '@site/src/components/landing/sections/Publications';
11import Research from '@site/src/components/landing/sections/Research'; 12import Research from '@site/src/components/landing/sections/Research';
12import Resume from '@site/src/components/landing/sections/Resume'; 13import Resume from '@site/src/components/landing/sections/Resume';
13import Software from '@site/src/components/landing/sections/Software';
14import Section from '@site/src/components/landing/Section';
15import TrackActiveSection from '@site/src/components/TrackActiveSection'; 14import TrackActiveSection from '@site/src/components/TrackActiveSection';
16 15
17import avatar from '@site/src/pages/avatar.jpg';
18
19export default function Home() { 16export default function Home() {
20 return ( 17 return (
21 <Layout> 18 <Layout>
22 <TrackActiveSection> 19 <TrackActiveSection>
23 <Hero avatar={avatar} /> 20 <Hero />
24 <Research /> 21 <Research />
25 <Publications /> 22 <Publications />
26 <Software />
27 <Resume /> 23 <Resume />
28 <Section id="contact" title="Contact" /> 24 <Contact />
29 </TrackActiveSection> 25 </TrackActiveSection>
30 </Layout> 26 </Layout>
31 ); 27 );