From 2746d34b569ab602d97d8e9697976780420f4386 Mon Sep 17 00:00:00 2001 From: Claire-me Date: Mon, 3 Oct 2022 18:48:15 +0100 Subject: [PATCH 1/2] Add About-us --- src/pages/about-us.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/pages/about-us.js diff --git a/src/pages/about-us.js b/src/pages/about-us.js new file mode 100644 index 00000000..5016b766 --- /dev/null +++ b/src/pages/about-us.js @@ -0,0 +1,17 @@ +import Head from "next/head"; +import AboutSection from "../components/Home/AboutSection"; +// import AboutSection from "../components/Home/AboutSectionSection/Hero"; + +export default function Home({ articles }) { + return ( + <> + + WebXDAO - Opensource Community + +
+ + +
+ + ); +} From ef9e25fa48709169bf5d42af0e7bd12456c1d3bc Mon Sep 17 00:00:00 2001 From: Claire-me Date: Mon, 3 Oct 2022 18:49:47 +0100 Subject: [PATCH 2/2] Add AboutSection.js --- src/components/Home/AboutSection.js | 60 +++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/components/Home/AboutSection.js diff --git a/src/components/Home/AboutSection.js b/src/components/Home/AboutSection.js new file mode 100644 index 00000000..6c8ed106 --- /dev/null +++ b/src/components/Home/AboutSection.js @@ -0,0 +1,60 @@ +import Link from "next/link"; + +export default function AboutSection() { + return ( + <> +
+
+
+
+
+
+
+

+ Who Are We? +

+

+ WebXDAO is an opensource community that focus on the + future of the web. Here you will learn how to become a + blockchain developer while having fun with other community + members. +

+
+
+

+ Blockchain Development is an interesting field, in + demand and the latest trend in the tech industry. Here + you will get to interact with some great folks and + learn blockchain technology together. This community + is in its initial stage so you can show your + leadership skills and help for everyone's success. +

+
+
+

+ The Mission? +

+

+ Our goal is to build a team of passionate builders + around web technologies. We like sharing knowledge as + much as we can and grow together. +

+
+
+
+ +
+
+
+
+
+
+
+
+ + ); +}