Skip to content

Commit 102589a

Browse files
authored
Merge pull request #274 from thehashmap/fix/image-on-about-page
fix: image on about page
2 parents d252bbb + 13377af commit 102589a

File tree

1 file changed

+54
-56
lines changed

1 file changed

+54
-56
lines changed

src/components/Home/AboutSection.js

Lines changed: 54 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,58 @@
11
import Link from "next/link";
22

33
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&apos;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="/public/images/shapes/osscommunity.png"
48-
alt="OSS Community"
49-
/>
50-
</div>
51-
</div>
52-
</div>
53-
</div>
54-
</div>
55-
</div>
56-
</section>
57-
</div>
58-
</>
59-
);
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 future of the web. Here
18+
you will learn how to become a blockchain developer while having fun with
19+
other community members.
20+
</p>
21+
<div className="">
22+
<div className="">
23+
<p className="mt-3 text-base text-white/80 text-left">
24+
Blockchain Development is an interesting field, in demand and the latest
25+
trend in the tech industry. Here you will get to interact with some great
26+
folks and learn blockchain technology together. This community is in its
27+
initial stage so you can show your leadership skills and help for
28+
everyone&apos;s success.
29+
</p>
30+
</div>
31+
<div className="lg:py-5 mt-3">
32+
<h1 className="text-5xl text-center font-bold tracking-tight text-white sm:text-6xl xl:text-4xl">
33+
<span className="block">The Mission?</span>
34+
</h1>
35+
<p className="mt-3 text-base text-white/70 text-center ">
36+
Our goal is to build a team of passionate builders around web
37+
technologies. We like sharing knowledge as much as we can and grow
38+
together.
39+
</p>
40+
</div>
41+
</div>
42+
<div className="flex justify-center items-center mt-3">
43+
<img
44+
className="max-w-full w-96"
45+
src="/images/shapes/12.png"
46+
alt="OSS Community"
47+
/>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
</div>
53+
</div>
54+
</section>
55+
</div>
56+
</>
57+
);
6058
}

0 commit comments

Comments
 (0)