-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathindex.page.tsx
More file actions
40 lines (38 loc) · 1.19 KB
/
index.page.tsx
File metadata and controls
40 lines (38 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import Head from 'next/head';
import AboutUs from '../components/AboutUs/AboutUs';
import ContactUs from '../components/ContactUs';
import Events from '../components/Events/Events';
import MissionPillars from '../components/MissionPillars/MissionPillars';
import HeroHeader from '../components/HeroHeader';
import Navbar from '../components/Navbar';;
import Footer from '../components/Footer';
export default function Home() {
return (
<div className="">
<Head>
<title>Reactjs Developer Community in Kenya</title>
<meta
name="description"
content="React js Developer Community Kenya is a community of react js developers using react related technologies in the Kenyan software development eco system."
key="desc"
/>
<meta
name="title"
content="Reactjs Developer Community in Kenya"
key="title"
/>
</Head>
<main className="">
<Navbar />
<HeroHeader />
<div className="flex flex-col py-12 bg-[#030e30] text-white">
<AboutUs />
</div>
<MissionPillars />
<Events />
<ContactUs />
<Footer />
</main>
</div>
);
}