footer maybe last one
This commit is contained in:
parent
f542af5d38
commit
c4cc2977d0
2 changed files with 22 additions and 14 deletions
|
@ -56,17 +56,6 @@ 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">
|
||||||
<span className="text-sm font-light">
|
|
||||||
{/* TODO: */}
|
|
||||||
{/* put tos and pp here instead */}
|
|
||||||
TOS and PP{" "}
|
|
||||||
<Link
|
|
||||||
href={FOOTERLINKS.footerBottom.designedBy.href}
|
|
||||||
className="text-primary font-semibold"
|
|
||||||
>
|
|
||||||
{FOOTERLINKS.footerBottom.designedBy.label}
|
|
||||||
</Link>
|
|
||||||
</span>
|
|
||||||
<span className="text-sm font-light">
|
<span className="text-sm font-light">
|
||||||
All Rights Reserved{" "}
|
All Rights Reserved{" "}
|
||||||
<Link
|
<Link
|
||||||
|
@ -76,6 +65,21 @@ const Footer = () => {
|
||||||
{FOOTERLINKS.footerBottom.rightsReserved.label}
|
{FOOTERLINKS.footerBottom.rightsReserved.label}
|
||||||
</Link>
|
</Link>
|
||||||
</span>
|
</span>
|
||||||
|
<span className="text-sm font-light">
|
||||||
|
<Link
|
||||||
|
href={FOOTERLINKS.footerBottom.termsofService.href}
|
||||||
|
className="text-primary font-medium transition-all underline-offset-4 hover:underline"
|
||||||
|
>
|
||||||
|
{FOOTERLINKS.footerBottom.termsofService.label}{" "}
|
||||||
|
</Link>
|
||||||
|
and{" "}
|
||||||
|
<Link
|
||||||
|
href={FOOTERLINKS.footerBottom.privacyPolicy.href}
|
||||||
|
className="text-primary font-medium transition-all underline-offset-4 hover:underline"
|
||||||
|
>
|
||||||
|
{FOOTERLINKS.footerBottom.privacyPolicy.label}
|
||||||
|
</Link>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -137,9 +137,13 @@ export const FOOTERLINKS = {
|
||||||
supportText: "Support Us on Socials",
|
supportText: "Support Us on Socials",
|
||||||
},
|
},
|
||||||
footerBottom: {
|
footerBottom: {
|
||||||
designedBy: {
|
termsofService: {
|
||||||
href: "https://abhijee.com",
|
href: "/tos",
|
||||||
label: "Proxy",
|
label: "TOS",
|
||||||
|
},
|
||||||
|
privacyPolicy: {
|
||||||
|
href: "/privacy-policy",
|
||||||
|
label: "Privacy Policy",
|
||||||
},
|
},
|
||||||
rightsReserved: {
|
rightsReserved: {
|
||||||
href: "https://cyprostudio.com",
|
href: "https://cyprostudio.com",
|
||||||
|
|
Loading…
Reference in a new issue