Skip to content
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

added github icon and link #223

Merged
merged 2 commits into from
Oct 12, 2024
Merged
Changes from 1 commit
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
12 changes: 8 additions & 4 deletions frontend/src/components/Shared/footer/Content.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import Logo from '../../../assets/Logo/playcafe.png';
import { FaFacebook, FaInstagram, FaTiktok } from 'react-icons/fa';
import { FaFacebook, FaInstagram, FaTiktok, FaGithub } from 'react-icons/fa';

export default function Content() {
return (
Expand Down Expand Up @@ -69,7 +69,6 @@ const Nav = () => {
name: 'Events',
link: '/event',
},

{
name: 'Reservation',
link: '/register',
Expand All @@ -96,9 +95,14 @@ const Nav = () => {
},
{
name: 'Tiktok',
link: 'https://www.tiktok.com/@sipnplaynycofficial?lang=en',
link: 'https://www.tiktok.com/@sipnplaynyc?lang=en',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Issue: Updated TikTok link returns a 403 error.

The new TikTok URL https://www.tiktok.com/@sipnplaynyc?lang=en is currently inaccessible, returning a 403 Forbidden error. Please verify that the URL is correct and that the TikTok profile is set to be publicly accessible.

🔗 Analysis chain

LGTM: TikTok link updated, but clarification needed.

The TikTok link has been simplified by removing "official" from the URL. While this change appears to be an improvement, it wasn't mentioned in the PR objectives. Could you please clarify the reason for this update?

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Verify if the new TikTok URL is valid and accessible
curl -I https://www.tiktok.com/@sipnplaynyc?lang=en

Length of output: 1441

RamakrushnaBiswal marked this conversation as resolved.
Show resolved Hide resolved
icon: <FaTiktok />,
},
{
name: 'GitHub',
link: 'https://github.com/devxMani/PlayCafe',
RamakrushnaBiswal marked this conversation as resolved.
Show resolved Hide resolved
icon: <FaGithub />,
},
];
const emailAddress = '[email protected]';

Expand Down Expand Up @@ -145,4 +149,4 @@ const Nav = () => {
</div>
</div>
);
};
};