Skip to content

Commit 06c7188

Browse files
committed
Implementing About section [Fixes #78]
1 parent 8ac62dd commit 06c7188

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/pages/about/index.page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import Head from 'next/head';
22
import React from 'react';
3+
import AboutUs from "../../components/about-us/about-us";
34

45
export default function AboutPage() {
56
return (
67
<>
78
<Head>
89
<title>Reactjs Developer Community in Kenya - About</title>
910
</Head>
10-
<main className="flex justify-center items-center min-h-screen">
11-
<h1 className="text-white">About page will be here</h1>
11+
<main className="flex justify-center items-center min-h-screen bg-white">
12+
<AboutUs/>
1213
</main>
1314
</>
1415
);

0 commit comments

Comments
 (0)