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.tsx18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index b8e986d..1a2b114 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -7,20 +7,26 @@
7import Layout from '@theme/Layout'; 7import Layout from '@theme/Layout';
8 8
9import Hero from '@site/src/components/landing/sections/Hero'; 9import Hero from '@site/src/components/landing/sections/Hero';
10import Publications from '@site/src/components/landing/sections/Publications';
11import Research from '@site/src/components/landing/sections/Research';
10import Resume from '@site/src/components/landing/sections/Resume'; 12import Resume from '@site/src/components/landing/sections/Resume';
13import Software from '@site/src/components/landing/sections/Software';
11import Section from '@site/src/components/landing/Section'; 14import Section from '@site/src/components/landing/Section';
15import TrackActiveSection from '@site/src/components/TrackActiveSection';
12 16
13import avatar from './avatar.jpg'; 17import avatar from './avatar.jpg';
14 18
15export default function Home() { 19export default function Home() {
16 return ( 20 return (
17 <Layout> 21 <Layout>
18 <Hero avatar={avatar} /> 22 <TrackActiveSection>
19 <Section title="Research" /> 23 <Hero avatar={avatar} />
20 <Section title="Publications" /> 24 <Research />
21 <Section title="Software" /> 25 <Publications />
22 <Resume /> 26 <Software />
23 <Section title="Contact" /> 27 <Resume />
28 <Section id="contact" title="Contact" />
29 </TrackActiveSection>
24 </Layout> 30 </Layout>
25 ); 31 );
26} 32}