This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11import { 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
37export 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 )
You can’t perform that action at this time.
0 commit comments