Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ const footerLinks = [

function FooterUi() {
return (
<footer className="border-t border-slate-800 px-12 pb-4 pt-4 dark:bg-slate-900">
<div className="mx-auto max-w-screen-2xl overflow-hidden px-6 py-4 lg:px-8">
<footer className="border-t border-slate-800 px-4 py-2 dark:bg-slate-900">
<div className="mx-auto max-w-screen-2xl px-2 py-2 ">
<nav
aria-label="Footer"
className="relative z-10 -mb-6 flex justify-center gap-5 sm:space-x-12"
className="relative z-10 flex justify-center gap-5 sm:space-x-12"
>
{footerLinks.map((item) => (
<div key={item.title} className="pb-6">
<div key={item.title} className="pb-2">
<Link
href={item.link}
target={item?.target_blank ? '_blank' : '_self'}
Expand All @@ -59,7 +59,7 @@ function FooterUi() {
</div>
))}
</nav>
<div className="mt-8 flex justify-center space-x-10">
<div className="mt-4 flex justify-center space-x-6">
{socialMediaLinks.map((item, idx) => {
const { Icon, Link: link } = item
return (
Expand All @@ -70,7 +70,7 @@ function FooterUi() {
target="_blank"
aria-label="social media link"
>
<Icon className="h-6 w-6 fill-slate-400 hover:fill-slate-300 dark:hover:fill-slate-300"></Icon>
<Icon className="h-5 w-5 fill-slate-400 hover:fill-slate-300 dark:hover:fill-slate-300"></Icon>
</Link>
)
})}
Expand Down
2 changes: 1 addition & 1 deletion src/components/goforgofr/GFGFaq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const GfgFaq = () => {
},
{
"title": "Have any other queries?",
"description": "Feel free to join our Discord community to start discussions or connect with fellow participants. You can also join the WhatsApp group linked in the registration form. Register now and be part of this exciting event!"
"description": "Feel free to join our Discord community to start discussions or connect with fellow participants. You can also join the WhatsApp group linked in the registration form. "
}
];

Expand Down
4 changes: 1 addition & 3 deletions src/components/goforgofr/HackathonLinkButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ export const HackathonLinkButton = () => {
return (
<div className="left-0 right-0 top-0 z-50 bg-black px-4 py-1 sm:fixed">
<div className="relative z-30 flex items-center justify-center text-center text-white">
<span className="bg-gradient-to-r from-indigo-200 via-sky-400 to-indigo-200 bg-clip-text text-sm font-semibold text-transparent md:text-sm">
🚀 GoFr Summer of Code 2025 is Live. Register Now !
</span>

<Link
href="https://unstop.com/hackathons/gofr-summer-of-code-gofrdev-1488007"
className="group relative flex flex-col items-center gap-1 px-2 text-xs md:text-xs"
Expand Down
Loading