-
Notifications
You must be signed in to change notification settings - Fork 0
CW2-25 Create "Contact-Us" page #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
3fe8a62
621263b
43c6187
7b1271b
fb8fddb
454aa6a
0ed13af
6167f38
6caf851
9919ab3
a682e27
0df26f3
77887ab
2c08ebb
fcbe497
604574f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// import DiscordLogo from "@/public/assets/discord_logo.svg" | ||
import Image from 'next/image'; | ||
|
||
const boxStyling = | ||
'border border-[#595F6D] rounded-lg hover:border-[#788093] hover:bg-[#070034] hover:bg-opacity-75 transition-all duration-300'; | ||
const socialsBoxStyling = | ||
'xl:col-span-1 col-span-3 flex justify-center pt-2 pb-2 border border-[#595F6D] hover:border-[#788093] rounded-lg hover:bg-[#070034] hover:bg-opacity-75 transition-all duration-300'; | ||
|
||
const Contacts = () => { | ||
return ( | ||
<div className="md:mt-10 mt-5"> | ||
<div className="grid grid-cols-3 1 gap-x-9 gap-y-5 mb-10"> | ||
<a href="https://bit.ly/CSESocDiscord" target="_blank" className={socialsBoxStyling}> | ||
<Image | ||
src="assets/discord_logo.svg" | ||
alt="discord logo" | ||
width={25} | ||
height={25} | ||
className="mr-1" | ||
/> | ||
<p className="text-xl font-bold m-2">DISCORD</p> | ||
</a> | ||
<a | ||
href="https://www.facebook.com/csesoc/" | ||
target="_blank" | ||
className={socialsBoxStyling} | ||
> | ||
<Image | ||
src="assets/fb_logo.svg" | ||
alt="facebook logo" | ||
width={25} | ||
height={25} | ||
className="mr-1" | ||
/> | ||
<p className="text-xl font-bold m-2">FACEBOOK</p> | ||
</a> | ||
<a | ||
href="https://www.facebook.com/groups/csesoc" | ||
target="_blank" | ||
className={socialsBoxStyling} | ||
> | ||
<Image | ||
src="assets/group_icon.svg" | ||
alt="facebook group" | ||
width={25} | ||
height={25} | ||
className="mr-1" | ||
/> | ||
<p className="text-xl font-bold m-2">FACEBOOK GROUP</p> | ||
</a> | ||
</div> | ||
|
||
<div className="flex 1 justify-around xl:mx-40"> | ||
<a href="https://twitter.com/csesoc?lang=en" target="_blank"> | ||
<Image | ||
src="assets/x_twitter_icon.svg" | ||
alt="X/Twitter" | ||
width={35} | ||
height={35} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
<a href="https://www.youtube.com/@CSESocUNSW" target="_blank"> | ||
<Image | ||
src="assets/youtube_logo.svg" | ||
alt="Youtube" | ||
width={35} | ||
height={35} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
<a href="https://www.instagram.com/csesoc_unsw/?hl=en" target="_blank"> | ||
<Image | ||
src="assets/instagram_logo.svg" | ||
alt="Instagram" | ||
width={35} | ||
height={35} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
<a href="https://www.tiktok.com/@csesoc?lang=en" target="_blank"> | ||
<Image | ||
src="assets/tiktok_logo.svg" | ||
alt="TikTok" | ||
width={35} | ||
height={35} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
<a href="#" target="_blank"> | ||
<Image | ||
src="assets/wechat_logo.svg" | ||
alt="weChat" | ||
width={40} | ||
height={40} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
<a href="https://www.linkedin.com/company/csesoc?originalSubdomain=au" target="_blank"> | ||
<Image | ||
src="assets/linkedin_logo.svg" | ||
alt="LinkedIn" | ||
width={35} | ||
height={35} | ||
className="mr-1 fill-white hover:scale-105 transition-all" | ||
/> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Contacts; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,9 @@ export default function Hamburger() { | |
<li className="py-2 text-lg"> | ||
<Link href={'./sponsors'}>Sponsors</Link> | ||
</li> | ||
<li className="py-2 text-lg"> | ||
<Link href={'./contact-us'}>Contact Us</Link> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done :) |
||
</li> | ||
</ul> | ||
</motion.div> | ||
)} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this change? (same with package-lock.json)