footer: surface RMP lockup next to RMP mention (light/dark-aware RmpMark)

This commit is contained in:
2026-06-16 00:46:48 +00:00
parent f1e582610b
commit b9621ede1a
2 changed files with 136 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import React from "react";
import Link from "next/link";
import AppImage from "@/components/ui/AppImage";
import AnimatedLogo from "@/components/AnimatedLogo";
import RmpMark from "@/components/RmpMark";
import {
LinkedInIcon,
InstagramIcon,
@@ -137,14 +138,17 @@ export default function Footer() {
<div className="flex items-center gap-4 text-xs font-body text-[#475569]">
<Link href="/privacy" className="hover:text-[#1D4ED8] transition-colors">Privacy Policy</Link>
<Link href="/terms" className="hover:text-[#1D4ED8] transition-colors">Terms of Service</Link>
<span>
© 2026 <a
<span className="inline-flex items-center gap-2 flex-wrap">
© 2026{' '}
<a
href="https://www.relevantmediaproperties.com/"
target="_blank"
rel="noopener noreferrer"
className="hover:text-[#1D4ED8] transition-colors underline-offset-2 hover:underline">
Relevant Media Properties
</a>. All rights reserved.
</a>
<RmpMark mode="dark" height={20} />
. All rights reserved.
</span>
</div>
</div>