Skip to content
Open
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
7 changes: 7 additions & 0 deletions app/[locale]/dashboard/components/main-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ const MainFooter = () => {
? getPlatformPageUrl('/about-us', currentLocale)
: '/about-us';

const privacyHref = isCollaborativeSubdomain
? getPlatformPageUrl('/privacy', currentLocale)
: '/privacy';

const socialMedia = [
{
icon: Icons.github,
Expand Down Expand Up @@ -76,6 +80,9 @@ const MainFooter = () => {
<Link href={'mailto:info@civicdatalab.in'}>
<Text color="onBgDefault">Contact Us</Text>
</Link>
<Link href={privacyHref}>
<Text color="onBgDefault">Privacy</Text>
</Link>
</div>
<div className="flex lg:hidden gap-2 order-2">
{socialMedia.map((item, index) => (
Expand Down
Loading