1+ import Link from "next/link" ;
2+ import Image from "next/image" ;
3+ export default function AboutHomePage ( ) {
4+ return (
5+ < section className = "py-8 xl:px-24 sm:px-10 px-5" id = "about" >
6+ < div className = "text-center my-10" >
7+ < h2 className = "font-bold text-6xl" > ABOUT</ h2 >
8+ </ div >
9+ < div className = "flex justify-center items-center" >
10+ < div className = "lg:grid grid-cols-6 flex-1 max-w-[90rem]" >
11+ { /* LEFT SIDE */ }
12+ < div className = "col-span-2 md:mx-5" >
13+ < div className = "flex items-center justify-center" >
14+ < Image src = "/assets/csesoc_icon.svg" alt = "CSESoc Icon" width = { 150 } height = { 150 } />
15+ </ div >
16+ < h2 className = "mt-10 text-3xl font-extrabold" > CSESoc</ h2 >
17+ < p className = "text-[#727B8C] font-medium" > unsw-computer-science-engineering-society</ p >
18+ < button className = "bg-[#444F6F] w-full my-5 py-2 rounded" > Follow</ button >
19+ < p >
20+ CSESoc is the principal representative body for UNSW computing students.
21+ </ p >
22+ < div className = "my-4 flex gap-5" >
23+ < Image src = "/assets/people_icon.svg" alt = "People" width = { 20 } height = { 20 } />
24+ < div >
25+ 432 < span className = "text-[#727B8C]" > members</ span > · 342{ ' ' }
26+ < span className = "text-[#727B8C]" > subcom</ span >
27+ </ div >
28+ </ div >
29+ < div className = "my-4 flex gap-5" >
30+ < Image src = "/assets/location_icon.svg" alt = "Location" width = { 20 } height = { 20 } />
31+ Sydney, Australia
32+ </ div >
33+ < div className = "flex gap-5" >
34+ < Image src = "/assets/mail_icon.svg" alt = "Mail" width = { 20 } height = { 20 } />
35+ info@csesoc.org.au
36+ </ div >
37+ </ div >
38+ { /* RIGHT SIDE */ }
39+ < div className = "col-span-4 lg:mt-0 mt-10" >
40+ < div className = "rounded border border-[#595F6D] p-5 h-auto" >
41+ < p className = "text-xs" >
42+ csesoc/README< span className = "text-[#7A8192]" > .md</ span >
43+ </ p >
44+ < p className = "mt-5" >
45+ CSESoc is one of the biggest and most active societies at UNSW, catering to over 3500 CSE
46+ students spanning across degrees in Computer Science, Software Engineering,
47+ Bioinformatics and Computer Engineering.
48+ < br /> < br />
49+ We are here to fulfil the social, personal and
50+ professional needs of CSE students, and promote computing through a variety of forms.
51+ </ p >
52+ </ div >
53+
54+ </ div >
55+ </ div >
56+ </ div >
57+ </ section >
58+ ) ;
59+ }
0 commit comments