chore: Replace references to deprecated services

This commit is contained in:
Dries Augustyns
2025-12-31 15:08:26 +01:00
parent 289c633189
commit 7648f6e1eb
51 changed files with 163 additions and 183 deletions
+3 -9
View File
@@ -6,7 +6,7 @@ interface FooterProps {
landingUrl?: string;
}
export function Footer({projectId, landingUrl = 'https://www.useplunk.com'}: FooterProps) {
export function Footer({projectId, landingUrl = 'https://next.useplunk.com'}: FooterProps) {
return (
<Section className="border-t border-gray-100 bg-gray-50 px-8 py-8">
<Text className="mb-4 mt-0 text-center text-xs leading-relaxed text-gray-600">
@@ -22,17 +22,11 @@ export function Footer({projectId, landingUrl = 'https://www.useplunk.com'}: Foo
Plunk
</Link>
{' • '}
<Link
href={`${landingUrl}/privacy`}
className="text-gray-500 no-underline hover:text-gray-700"
>
<Link href={`${landingUrl}/privacy`} className="text-gray-500 no-underline hover:text-gray-700">
Privacy
</Link>
{' • '}
<Link
href={`${landingUrl}/terms`}
className="text-gray-500 no-underline hover:text-gray-700"
>
<Link href={`${landingUrl}/terms`} className="text-gray-500 no-underline hover:text-gray-700">
Terms
</Link>
</Text>