-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/truth-redefined-again' into trut…
…h-redefined-again merge
- Loading branch information
Showing
4 changed files
with
36 additions
and
44 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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
import "../styles/Footer.css"; | ||
import { ROUTER_PATHS } from "../util/constants"; | ||
import { ROUTER_PATHS, DISCORD_INVITE, KOSS_CONTACT_EMAIL, KOSS_LINKEDIN_URL, KOSS_TWITTER_URL, KOSS_WEBSITE_URL } from "../util/constants"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer className="footer"> | ||
<div className="footer-content"> | ||
<div className="footer-columns"> | ||
<div className="footer-column"> | ||
<h2>Social Groups</h2> | ||
<p><a href="https://discord.gg/efFwh6fnjk" target="_blank">Discord</a></p> | ||
<p><a href="https://www.linkedin.com/company/kharagpur-open-source-society/mycompany/">LinkedIn</a></p> | ||
<p><a href="https://x.com/kossiitkgp">Twitter</a></p> | ||
</div> | ||
<div className="footer-column"> | ||
<h2>Quick Links</h2> | ||
<p><a href={`${ROUTER_PATHS.HOME}#timeline`}>Timeline</a></p> | ||
<p><a href={ROUTER_PATHS.FAQ}>FAQs</a></p> | ||
<p><a href={`${ROUTER_PATHS.HOME}#about`}>About KWoC</a></p> | ||
</div> | ||
<div className="footer-column"> | ||
<h2>Other</h2> | ||
<p><a href="https://kossiitkgp.org/">About KOSS</a></p> | ||
{/*<p><a href="">Past Programs</a></p>*/} | ||
<p><a href="mailto:[email protected]">[email protected]</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="footer-bottom"> | ||
<h1>Kharagpur Winter of Code</h1> | ||
<p>With 💙 by KOSS</p> | ||
</div> | ||
</footer> | ||
); | ||
return ( | ||
<footer className="footer"> | ||
<div className="footer-content"> | ||
<div className="footer-columns"> | ||
<div className="footer-column"> | ||
<h2>Social Groups</h2> | ||
<p><a href={DISCORD_INVITE}>Discord</a></p> | ||
<p><a href={KOSS_LINKEDIN_URL}>LinkedIn</a></p> | ||
<p><a href={KOSS_TWITTER_URL}>Twitter</a></p> | ||
</div> | ||
<div className="footer-column"> | ||
<h2>Quick Links</h2> | ||
<p><a href={`${ROUTER_PATHS.HOME}#timeline`}>Timeline</a></p> | ||
<p><a href={ROUTER_PATHS.FAQ}>FAQs</a></p> | ||
<p><a href={`${ROUTER_PATHS.HOME}#about`}>About KWoC</a></p> | ||
</div> | ||
<div className="footer-column"> | ||
<h2>Other</h2> | ||
<p><a href={KOSS_WEBSITE_URL}>About KOSS</a></p> | ||
<p><a href="https://kwoc23.kossiitkgp.org/pastprograms">Past Programs</a></p> | ||
<p><a href={KOSS_CONTACT_EMAIL}>[email protected]</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="footer-bottom"> | ||
<h1>Kharagpur Winter of Code</h1> | ||
<p>With 💙 by KOSS</p> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer |
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 |
---|---|---|
|
@@ -35,8 +35,6 @@ export enum ROUTER_PATHS { | |
ONE_PROJECT_STATS = "/stats/project/:id", | ||
} | ||
export const DISCORD_INVITE = "https://discord.gg/efFwh6fnjk"; | ||
export const SLACK_INVITE = | ||
"https://join.slack.com/t/kwoc-koss/shared_invite/zt-wlftnk75-VoQHEEB9WpkHfza6~GGpWQ"; | ||
export const KOSS_WEBSITE_URL = "https://kossiitkgp.org"; | ||
export const KOSS_CONTACT_EMAIL = "[email protected]"; | ||
export const KOSS_LINKEDIN_URL = | ||
|
@@ -45,9 +43,9 @@ export const KOSS_TWITTER_URL = "https://twitter.com/kossiitkgp"; | |
export const FOSSU_WEBSITE_URL = "https://fossunited.org"; | ||
|
||
export const MENTOR_MANUAL_LINK = | ||
"https://drive.google.com/file/d/1qNl6RGQ6dnkFu20L3LwC4bcBFOOpd_vV/view?usp=drive_link"; | ||
"https://drive.google.com/file/d/1XUGfHygE3_KYX_qhcpvw8jhKLlcRkzHP/view?usp=drive_link"; | ||
export const STUDENT_MANUAL_LINK = | ||
"https://drive.google.com/file/d/18RqKEQnyS9YDKyaVQB8rvnqJtbxejf0M/view?usp=drive_link"; | ||
"https://drive.google.com/file/d/1gc2NWeMDA3ZFzH4RWVspuerduRdfY9yu/view?usp=drive_link"; | ||
|
||
export const GH_OAUTH_CLIENT_ID = import.meta.env.VITE_GH_OAUTH_CLIENT_ID; | ||
export const GH_OAUTH_URL = `https://github.com/login/oauth/authorize?client_id=${GH_OAUTH_CLIENT_ID}&state=replacethiswithrandomtextlater`; |