We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af3d02 commit 2746d34Copy full SHA for 2746d34
src/pages/about-us.js
@@ -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