Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit d41c05a

Browse files
authored
feat: awards section (#291)
1 parent 5c17cfa commit d41c05a

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

src/components/Newsletter.jsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
import { Container } from '@/components/Container'
2+
import Image from 'next/image'
3+
4+
import CommunityAward from '@/images/awards/github-award-community-growth-eddie-jaoude.jpeg'
5+
import TeacherAward from '@/images/awards/github-award-top-teacher-eddie-jaoude.jpeg'
26

37
export function Newsletter() {
48
return (
59
<section
610
id="get-started-today"
711
className="relative overflow-hidden bg-primary-600 py-32"
812
>
9-
<Container className="relative">
13+
<Container className="relative space-y-16">
1014
<div className="mx-auto max-w-lg text-center">
1115
<h2 className="font-display text-3xl tracking-tight text-white sm:text-4xl">
1216
Subscribe to the EddieHub Newsletter
@@ -22,6 +26,15 @@ export function Newsletter() {
2226
></iframe>
2327
</div>
2428
</div>
29+
<div className="mx-auto text-center">
30+
<h3 className="font-display text-3xl tracking-tight text-white sm:text-4xl">
31+
Awards
32+
</h3>
33+
<div className="my-4 flex flex-wrap items-center justify-evenly gap-4">
34+
<Image src={CommunityAward} width="500" className="rounded" />
35+
<Image src={TeacherAward} width="500" className="rounded" />
36+
</div>
37+
</div>
2538
</Container>
2639
</section>
2740
)
93.8 KB
Loading
89.4 KB
Loading

0 commit comments

Comments
 (0)