Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions frontend/src/components/LandingComponents/Contact/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ const contactList: ContactProps[] = [
position: 'Check out our Github repository',
url: url.githubRepoURL,
},
{
// HIDING BROKEN LINKS TEMPORARILY
/* {
icon: <AiOutlineDiscord size={45} />,
name: 'Discord',
position: 'Join us at Discord for discussions',
Expand All @@ -43,7 +44,8 @@ const contactList: ContactProps[] = [
name: 'Email',
position: 'Email us for any queries',
url: '',
},
},
*/
];

const cardVariants = {
Expand Down Expand Up @@ -75,7 +77,7 @@ export const Contact = () => {
<div
data-testid="contact"
ref={ref}
className="grid md:grid-cols-2 lg:grid-cols-4 gap-8 gap-y-10"
className="flex flex-wrap justify-center gap-8 gap-y-10"
>
{contactList.map(({ icon, name, position, url }: ContactProps) => (
<motion.div
Expand Down