@@ -18,83 +18,74 @@ const talks = await getCollection('talks');
1818---
1919
2020<BaseLayout seo ={ entry .data .seo } >
21- <section class =" py-6" >
22- <Container >
23- <Author {... DEFAULT_CONFIGURATION .author } />
24- </Container >
25- </section >
26- <section class =" py-6" >
27- <Container >
28- <div class =" flex flex-col gap-6" >
29- <div class =" flex items-center" >
30- <span class =" text-headings" >About</span >
31- </div >
32- <div class =" prose dark:prose-invert" >
33- <Content />
34- </div >
21+ <Container as =' section' class =' py-6' >
22+ <Author {... DEFAULT_CONFIGURATION .author } />
23+ </Container >
24+
25+ <Container as =' section' class =' py-6' >
26+ <div class =" flex flex-col gap-6" >
27+ <div class =" flex items-center" >
28+ <span class =" text-headings" >About</span >
29+ </div >
30+ <div class =" prose dark:prose-invert" >
31+ <Content />
3532 </div >
36- </Container >
37- </section >
33+ </div >
34+ </Container >
3835 {
3936 links .length > 0 && (
40- <section class = " py-8" >
41- <Container >
42- <div class = " flex flex-col gap-5" >
43- <span class = " text-headings" >Contact</span >
44- <ul class = " flex flex-col gap-3" >
45- { links .map ((link ) => (
46- <li class = " py-0.5" >
47- <div class = " flex items-center gap-5" >
48- <span class = " min-w-28 text-muted-foreground" >
49- { link .data .label }
50- </span >
51- <a
52- class = " text-headings font-medium"
53- rel = " noopener noreferrer"
54- target = " _blank"
55- href = { link .data .url }
56- >
57- { link .data .name }
58- </a >
59- </div >
60- </li >
61- ))}
62- </ul >
63- </div >
64- </Container >
65- </section >
37+ <Container as = ' section' class = ' py-8' >
38+ <div class = " flex flex-col gap-5" >
39+ <span class = " text-headings" >Contact</span >
40+ <ul class = " flex flex-col gap-3" >
41+ { links .map ((link ) => (
42+ <li class = " py-0.5" >
43+ <div class = " flex items-center gap-5" >
44+ <span class = " min-w-28 text-muted-foreground" >
45+ { link .data .label }
46+ </span >
47+ <a
48+ class = " text-headings font-medium"
49+ rel = " noopener noreferrer"
50+ target = " _blank"
51+ href = { link .data .url }
52+ >
53+ { link .data .name }
54+ </a >
55+ </div >
56+ </li >
57+ ))}
58+ </ul >
59+ </div >
60+ </Container >
6661 )
6762 }
6863 {
6964 sortedJobs .length > 0 && (
70- <section class = " py-6" >
71- <Container >
72- <div class = " flex flex-col gap-5" >
73- <span class = " text-headings" >Work Experience</span >
74- <ul class = " flex flex-col gap-8" >
75- { sortedJobs .map ((job ) => (
76- <WorkExperience entry = { job } />
77- ))}
78- </ul >
79- </div >
80- </Container >
81- </section >
65+ <Container as = ' section' class = ' py-6' >
66+ <div class = " flex flex-col gap-5" >
67+ <span class = " text-headings" >Work Experience</span >
68+ <ul class = " flex flex-col gap-8" >
69+ { sortedJobs .map ((job ) => (
70+ <WorkExperience entry = { job } />
71+ ))}
72+ </ul >
73+ </div >
74+ </Container >
8275 )
8376 }
8477 {
8578 talks .length > 0 && (
86- <section class = " py-6" >
87- <Container >
88- <div class = " flex flex-col gap-5" >
89- <span class = " text-headings" >Speaking</span >
90- <ul class = " flex flex-col gap-8" >
91- { talks .map ((talk ) => (
92- <Talk entry = { talk } />
93- ))}
94- </ul >
95- </div >
96- </Container >
97- </section >
79+ <Container as = ' section' class = ' py-6' >
80+ <div class = " flex flex-col gap-5" >
81+ <span class = " text-headings" >Speaking</span >
82+ <ul class = " flex flex-col gap-8" >
83+ { talks .map ((talk ) => (
84+ <Talk entry = { talk } />
85+ ))}
86+ </ul >
87+ </div >
88+ </Container >
9889 )
9990 }
10091</BaseLayout >
0 commit comments