Skip to content

Commit 0fe89ec

Browse files
authored
Merge pull request #220 from clairecharles/main
Add About-us.js
2 parents 09b7ddc + ef9e25f commit 0fe89ec

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

src/components/Home/AboutSection.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import Link from "next/link";
2+
3+
export default function AboutSection() {
4+
return (
5+
<>
6+
<div className="">
7+
<section className="">
8+
<div className=" bg-transparent">
9+
<div className="items-center">
10+
<div className="">
11+
<div className=" sm:px-6">
12+
<div className="lg:py-5 p-5">
13+
<h1 className="text-5xl text-center font-bold tracking-tight text-white sm:mt-5 sm:text-6xl lg:mt-6 xl:text-4xl">
14+
<span className="block">Who Are We?</span>
15+
</h1>
16+
<p className="mt-3 text-base text-white/80 text-left">
17+
WebXDAO is an opensource community that focus on the
18+
future of the web. Here you will learn how to become a
19+
blockchain developer while having fun with other community
20+
members.
21+
</p>
22+
<div className="">
23+
<div className="">
24+
<p className="mt-3 text-base text-white/80 text-left">
25+
Blockchain Development is an interesting field, in
26+
demand and the latest trend in the tech industry. Here
27+
you will get to interact with some great folks and
28+
learn blockchain technology together. This community
29+
is in its initial stage so you can show your
30+
leadership skills and help for everyone's success.
31+
</p>
32+
</div>
33+
<div className="lg:py-5 mt-3">
34+
<h1 className="text-5xl text-center font-bold tracking-tight text-white sm:text-6xl xl:text-4xl">
35+
<span className="block">The Mission?</span>
36+
</h1>
37+
<p className="mt-3 text-base text-white/70 text-center ">
38+
Our goal is to build a team of passionate builders
39+
around web technologies. We like sharing knowledge as
40+
much as we can and grow together.
41+
</p>
42+
</div>
43+
</div>
44+
<div className="justify-center flex items-center mt-3">
45+
<img
46+
className=" lg:w-50 sm:w-100"
47+
src="/images/shapes/ossCommunity.png"
48+
alt=""
49+
/>
50+
</div>
51+
</div>
52+
</div>
53+
</div>
54+
</div>
55+
</div>
56+
</section>
57+
</div>
58+
</>
59+
);
60+
}

src/pages/about-us.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import Head from "next/head";
2+
import AboutSection from "../components/Home/AboutSection";
3+
// import AboutSection from "../components/Home/AboutSectionSection/Hero";
4+
5+
export default function Home({ articles }) {
6+
return (
7+
<>
8+
<Head>
9+
<title>WebXDAO - Opensource Community</title>
10+
</Head>
11+
<div className="flex flex-col h-screen">
12+
<AboutSection />
13+
14+
</div>
15+
</>
16+
);
17+
}

0 commit comments

Comments
 (0)