footerfucking gay asf

This commit is contained in:
Proxyy587 2024-06-17 12:07:44 +05:30
parent 107891ac21
commit 9bbe3aa1ec

View file

@ -32,27 +32,27 @@ const Footer = () => {
Other Pages Other Pages
</h1> </h1>
{FOOTERLINKS.otherPages.map((link) => ( {FOOTERLINKS.otherPages.map((link) => (
<h3 key={link.href}> <span key={link.href}>
<Link <Link
href={link.href} href={link.href}
className="text-base font-light dark:hover:text-green-100/70 hover:text-green-500" className="text-base font-light dark:hover:text-green-100/70 hover:text-green-500"
> >
{link.label} {link.label}
</Link> </Link>
</h3> </span>
))} ))}
</div> </div>
<div className="flex flex-col items-center md:items-start"> <div className="flex flex-col items-center md:items-start">
<h1 className="text-2xl font-light text-primary">Resources</h1> <h1 className="text-2xl font-light text-primary">Resources</h1>
{FOOTERLINKS.plans.map((link) => ( {FOOTERLINKS.plans.map((link) => (
<h3 key={link.href}> <span key={link.href}>
<Link <Link
href={link.href} href={link.href}
className="text-base font-light dark:hover:text-green-100/70 hover:text-green-500" className="text-base font-light dark:hover:text-green-100/70 hover:text-green-500"
> >
{link.label} {link.label}
</Link> </Link>
</h3> </span>
))} ))}
</div> </div>
<div className="flex flex-col items-center md:items-start"> <div className="flex flex-col items-center md:items-start">
@ -68,7 +68,7 @@ const Footer = () => {
</div> </div>
<div className="border-t mb-6 border-gray-300 dark:border-white/30"></div> <div className="border-t mb-6 border-gray-300 dark:border-white/30"></div>
<div className="flex flex-col lg:flex-row justify-between items-center space-y-4 lg:space-y-0 px-4"> <div className="flex flex-col lg:flex-row justify-between items-center space-y-4 lg:space-y-0 px-4">
<h4 className="text-sm font-light"> <span className="text-sm font-light">
Designed and Developed by{" "} Designed and Developed by{" "}
<Link <Link
href={FOOTERLINKS.footerBottom.designedBy.href} href={FOOTERLINKS.footerBottom.designedBy.href}
@ -76,8 +76,8 @@ const Footer = () => {
> >
{FOOTERLINKS.footerBottom.designedBy.label} {FOOTERLINKS.footerBottom.designedBy.label}
</Link> </Link>
</h4> </span>
<h4 className="text-sm font-light"> <span className="text-sm font-light">
All Rights Reserved{" "} All Rights Reserved{" "}
<Link <Link
href={FOOTERLINKS.footerBottom.rightsReserved.href} href={FOOTERLINKS.footerBottom.rightsReserved.href}
@ -85,7 +85,7 @@ const Footer = () => {
> >
{FOOTERLINKS.footerBottom.rightsReserved.label} {FOOTERLINKS.footerBottom.rightsReserved.label}
</Link> </Link>
</h4> </span>
</div> </div>
</div> </div>
</footer> </footer>