Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/components/about-us/about-us.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';

export default function AboutUs() {
return (
<section
id="about-us"
className="flex flex-col max-w-2xl justify-center items-center self-center space-y-4 px-4"
>
<p className="text-3xl md:text-6xl tracking-wide md:font-light ">
ABOUT US
</p>
<p className="hidden md:inline-block text-4xl font-bold ">
Empowering great talent
</p>
<p className="sm:text-sm md:text-xl tracking-wide text-center space-y-4">
We bring together people who are passionate about React JS and{' '}
<br className="hidden md:display" />
it&apos;s ecosystem. We are a community of full-stack developers,
frontend developers and so much more
</p>
</section>
);
}
4 changes: 2 additions & 2 deletions src/pages/about/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export default function AboutPage() {
<Head>
<title>Reactjs Developer Community in Kenya - About</title>
</Head>
<main className="flex justify-center items-center min-h-screen">
<h1 className="text-white">About page will be here</h1>
<main className="flex justify-center items-center min-h-screen bg-white">
About Page here
</main>
</>
);
Expand Down
4 changes: 4 additions & 0 deletions src/pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Head from 'next/head';
import Image from 'next/image';
import logo from '../../public/reactdevske.svg';
import Events from '../components/Events/Events';
import AboutUs from '../components/about-us/about-us';

export default function Home() {
return (
Expand Down Expand Up @@ -49,6 +50,9 @@ export default function Home() {
</button>
</a>
</div>
<div className="flex flex-col py-12 bg-white">
<AboutUs />
</div>
<Events />
</main>
</div>
Expand Down