Skip to content

Commit 2746d34

Browse files
Add About-us
1 parent 0af3d02 commit 2746d34

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/pages/about-us.js

Lines changed: 17 additions & 0 deletions
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)