diff --git a/frontend/src/components/shared/Footer.tsx b/frontend/src/components/shared/Footer.tsx
index 367dd5306..c794df07c 100644
--- a/frontend/src/components/shared/Footer.tsx
+++ b/frontend/src/components/shared/Footer.tsx
@@ -1,4 +1,4 @@
-import { Flex } from '@mantine/core';
+import { Flex, Text } from '@mantine/core';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { useCookieConsent } from '../../hooks/useCookieConsent';
@@ -93,22 +93,11 @@ export default function Footer({
{t('legal.accessibility', 'Accessibility')}
)}
- {cookiePolicy && (
-
- {t('legal.cookie', 'Cookie Preferecences')}
-
- )}
{analyticsEnabled && (
@@ -117,9 +106,9 @@ export default function Footer({
{/* Powered by section */}
- {t('poweredBy', 'Powered by')}
+ {t('poweredBy', 'Powered by')}
- Stirling PDF
+ Stirling
diff --git a/frontend/src/index.css b/frontend/src/index.css
index ec2585e8c..1140456b8 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -11,3 +11,33 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
+
+/* Footer link styling - make buttons and links look identical */
+.footer-link {
+ color: var(--mantine-color-blue-6);
+ text-decoration: none;
+ transition: color 0.2s ease;
+ border: none;
+ background: none;
+ cursor: pointer;
+ font-family: inherit;
+ font-size: inherit;
+ padding: 0;
+}
+
+.footer-link:hover {
+ color: var(--mantine-color-blue-8);
+ text-decoration: underline;
+}
+
+.stirling-link {
+ color: var(--mantine-color-blue-6);
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.2s ease;
+}
+
+.stirling-link:hover {
+ color: var(--mantine-color-blue-8);
+ text-decoration: underline;
+}