We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac62dd commit 06c7188Copy full SHA for 06c7188
1 file changed
src/pages/about/index.page.tsx
@@ -1,14 +1,15 @@
1
import Head from 'next/head';
2
import React from 'react';
3
+import AboutUs from "../../components/about-us/about-us";
4
5
export default function AboutPage() {
6
return (
7
<>
8
<Head>
9
<title>Reactjs Developer Community in Kenya - About</title>
10
</Head>
- <main className="flex justify-center items-center min-h-screen">
11
- <h1 className="text-white">About page will be here</h1>
+ <main className="flex justify-center items-center min-h-screen bg-white">
12
+ <AboutUs/>
13
</main>
14
</>
15
);
0 commit comments