File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+
3+ export default function AboutUs ( ) {
4+ return (
5+ < section
6+ id = "about-us"
7+ className = "flex flex-col max-w-2xl justify-center items-center self-center space-y-4 px-4"
8+ >
9+ < p className = "text-3xl md:text-6xl tracking-wide md:font-light " >
10+ ABOUT US
11+ </ p >
12+ < p className = "hidden md:inline-block text-4xl font-bold " >
13+ Empowering great talent
14+ </ p >
15+ < p className = "sm:text-sm md:text-xl tracking-wide text-center space-y-4" >
16+ We bring together people who are passionate about React JS and{ ' ' }
17+ < br className = "hidden md:display" />
18+ it's ecosystem. We are a community of full-stack developers,
19+ frontend developers and so much more
20+ </ p >
21+ </ section >
22+ ) ;
23+ }
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ export default function AboutPage() {
77 < Head >
88 < title > Reactjs Developer Community in Kenya - About</ title >
99 </ Head >
10- < main className = "flex justify-center items-center min-h-screen" >
11- < h1 className = "text-white" > About page will be here</ h1 >
10+ < main className = "flex justify-center items-center min-h-screen bg-white " >
11+ About Page here
1212 </ main >
1313 </ >
1414 ) ;
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import Head from 'next/head';
22import Image from 'next/image' ;
33import logo from '../../public/reactdevske.svg' ;
44import Events from '../components/Events/Events' ;
5+ import AboutUs from '../components/about-us/about-us' ;
56
67export default function Home ( ) {
78 return (
@@ -49,6 +50,9 @@ export default function Home() {
4950 </ button >
5051 </ a >
5152 </ div >
53+ < div className = "flex flex-col py-12 bg-white" >
54+ < AboutUs />
55+ </ div >
5256 < Events />
5357 </ main >
5458 </ div >
You can’t perform that action at this time.
0 commit comments