-
-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: footer changes & remove sw (#1270)
- Loading branch information
1 parent
059e59c
commit 3f5b29b
Showing
8 changed files
with
203 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"paths": { | ||
"@components/*": [ | ||
"src/components/*" | ||
], | ||
"@hooks/*": [ | ||
"src/hooks/*" | ||
], | ||
"@pages/*": [ | ||
"src/pages/*" | ||
], | ||
"@redux/*": [ | ||
"src/redux/*" | ||
], | ||
"@service/*": [ | ||
"src/service/*" | ||
], | ||
"@utils/*": [ | ||
"src/utils/*" | ||
], | ||
"@styles/*": [ | ||
"src/styles/*" | ||
], | ||
"@/*": [ | ||
"src/*" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React, { useEffect } from "react"; | ||
|
||
const Test = () => { | ||
useEffect(() => { | ||
window.location.href = "https://www.google.com"; | ||
}, []); | ||
|
||
return <div>Test</div>; | ||
}; | ||
|
||
export default Test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// src/config/footerLinksConfig.js | ||
|
||
export const footerLinks = { | ||
quickStarts: [ | ||
{ name: "Trending Events", path: "/trending" }, | ||
{ name: "NGOs near you", path: "/clubs" }, | ||
{ name: "Login / Signup", path: "/auth/login" }, | ||
{ name: "Events ", path: "/events" }, | ||
], | ||
resources: [ | ||
{ name: "GitHub", path: "https://github.com/ngoworldcommunity/NGOWorld" }, | ||
{ | ||
name: "Setup Frontend", | ||
path: "https://github.com/ngoworldcommunity/NGOWorld/blob/main/docs/FrontendSetup.md", | ||
}, | ||
{ | ||
name: "Setup Backend", | ||
path: "https://github.com/ngoworldcommunity/NGOWorld-Backend/blob/main/docs/BackendSetup.md", | ||
}, | ||
{ | ||
name: "Docker Resources", | ||
path: "https://github.com/ngoworldcommunity/NGOWorld/blob/main/docs/DockerSetup.md", | ||
}, | ||
], | ||
policies: [ | ||
{ name: "Terms of Use", path: "/terms" }, | ||
{ name: "Privacy Policy", path: "/privacy" }, | ||
{ name: "Cookies Policy", path: "/cookies" }, | ||
], | ||
social: [ | ||
{ | ||
name: "LinkedIn", | ||
path: "https://www.linkedin.com/company/ngoworld", | ||
icon: "FaLinkedinIn", | ||
}, | ||
{ | ||
name: "X", | ||
path: "https://x.com/ngoworlddotorg", | ||
icon: "FaXTwitter", | ||
}, | ||
{ | ||
name: "GitHub", | ||
path: "https://github.com/ngoworldcommunity", | ||
icon: "FaGithub", | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.