Skip to content

Commit 9186564

Browse files
authored
Merge branch 'main' into responsivess-design-fix
2 parents 5a1d725 + 102589a commit 9186564

23 files changed

+516
-337
lines changed

.dockerignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.git
2+
.husky
3+
.github
4+
.gitignore
5+
.gitpod.yml
6+
.prettierrc
7+
.eslintrc.json
8+
9+
LICENSE
10+
README.md
11+
Dockerfile
12+
CONTRIBUTING.md
13+
CODE_OF_CONDUCT.md

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [WebXDAO]

docker-compose.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
version: "3"
2+
23
services:
3-
react-app:
4-
restart: always
4+
next-app:
55
build:
6-
context: ./
6+
context: .
77
dockerfile: Dockerfile
8-
image: amazon-clone
8+
image: webxdao-website
9+
restart: always
910
stdin_open: true
1011
ports:
1112
- "3000:3000"
1213
networks:
13-
- app
14+
- app-net
1415
volumes:
1516
- ./src:/app/src
16-
- ./app/node_modules
17+
- /app/node_modules
1718

1819
networks:
19-
app:
20+
app-net:
2021
driver: bridge

package-lock.json

Lines changed: 47 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
},
2424
"devDependencies": {
2525
"autoprefixer": "^10.4.2",
26-
"prettier": "^2.7.1",
2726
"eslint": "8.6.0",
2827
"eslint-config-next": "12.3.0",
28+
"husky": "^8.0.0",
2929
"postcss": "^8.4.5",
30-
"tailwindcss": "^3.0.13",
31-
"husky": "^8.0.0"
30+
"prettier": "^2.7.1",
31+
"tailwindcss": "^3.2.4"
3232
},
3333
"description": "WebXDAO website",
3434
"repository": {
File renamed without changes.
7.31 KB
Loading
7.28 KB
Loading

src/components/Global/Footer.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@ const navigation = [
66
name: "About Us",
77
href: "/about",
88
children: [
9-
{ name: "Who we are?", href: "/about#who" },
10-
{ name: "What we do?", href: "/about#what" },
9+
{ name: "Who we are?", href: "/about-us#who" },
10+
{ name: "What we do?", href: "/about-us#what" },
1111
{ name: "Team WebX", href: "/team" },
1212
],
1313
},
1414
{
1515
name: "Socials",
1616
href: "/",
1717
children: [
18-
{ name: "GitHub", href: "" },
19-
{ name: "Twitter", href: "" },
20-
{ name: "Discord", href: "" },
21-
{ name: "LinkedIn", href: "" },
18+
{ name: "GitHub", href: "https://github.com/WebXDAO" },
19+
{ name: "Twitter", href: "https://twitter.com/WebXDAO" },
20+
{ name: "Discord", href: "https://discord.webxdao.xyz/" },
21+
{ name: "LinkedIn", href: "https://www.linkedin.com/company/76098793" },
2222
],
2323
},
2424
{
2525
name: "Contact",
2626
href: "/contact",
27-
children: [{ name: "Contact us", href: "" }],
27+
children: [{ name: "Contact us", href: "mailto:[email protected]" }],
2828
},
2929
{
3030
name: "Partners",
3131
href: "/partners",
3232
children: [
33-
{ name: "Our partners", href: "" },
34-
{ name: "Get partner", href: "" },
33+
{ name: "Our partners", href: "/partners" },
34+
{ name: "Partner with us", href: "/partners" },
3535
],
3636
},
3737
];
@@ -43,15 +43,15 @@ const Footer = () => {
4343
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
4444
<div>
4545
<div className="flex justify-center text-teal-600 sm:justify-start">
46-
<a href="https://webxdao.github.io/">
46+
<a href="https://webxdao.xyz">
4747
<span className="sr-only">WebX DAO</span>
4848
<img className="w-auto sm:h-14 md:h-16 h-12" src="/images/logo/logo.png" alt="" />
4949
</a>
5050
</div>
51-
{/*
51+
{/*
5252
<p className="max-w-md mx-auto mt-6 leading-relaxed text-center text-white/80 sm:max-w-xs sm:mx-0 sm:text-left">
5353
Add organization description here!
54-
</p>*/}
54+
</p> */}
5555
</div>
5656

5757
<div className="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:col-span-2 md:grid-cols-4">

src/components/Global/Navbar.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ const Navbar = () => {
2424
<div className="flex items-center flex-1">
2525
<div className="flex items-center justify-between w-full lg:w-auto">
2626
<Link href="/">
27+
<a>
2728
<>
28-
<a href="https://webxdao.github.io/">
2929
<span className="sr-only ">WebX DAO</span>
3030
<img
31-
className="h-10 w-auto sm:h-10 md:h-[4.2rem] cursor-pointer"
31+
className="h-12 w-auto sm:h-12 md:h-[4.2rem] cursor-pointer"
3232
src="/images/logo/logo.png"
3333
alt="WebX DAO White Logo"
3434
/>
35+
</>
3536
</a>
36-
</>
3737
</Link>
3838
<div className="flex items-center justify-between -mr-2 lg:hidden ">
3939
<Popover.Button className="inline-flex items-center justify-center p-2 text-gray-400 bg-transparent rounded-md focus-ring-inset hover:bg-gray-800 focus:outline-none focus:ring-2 focus:ring-white">
@@ -56,7 +56,7 @@ const Navbar = () => {
5656
</div>
5757

5858
<a
59-
href="#"
59+
href="https://github.com/sponsors/WebXDAO"
6060
className="inline-flex items-center px-4 py-2 text-base font-medium text-gray-600 bg-gray-100 border border-transparent rounded-md hover:text-white/80 hover:bg-gray-700"
6161
>
6262
GitHub
@@ -101,7 +101,7 @@ const Navbar = () => {
101101
<a
102102
key={item.name}
103103
href={item.href}
104-
className="block px-3 py-2 text-base font-medium text-gray-100 rounded-md hover:bg-gray-50"
104+
className="block px-3 py-2 text-base font-medium text-gray-100 rounded-md hover:bg-gray-600"
105105
>
106106
{item.name}
107107
</a>

0 commit comments

Comments
 (0)