// components/Footer.tsx import React from "react"; import Link from "next/link"; import { FaLinkedin, FaInstagram } from "react-icons/fa"; import Image from "next/image"; const omsLogoUrl = "/oms-logo.svg"; // Ensure this exists in /public // const omsLogoDarkUrl = "/oms-logo-dark.svg"; // Optional dark mode logo const Footer = () => { // In a real app, you might use useTheme to get the current theme // import { useTheme } from 'next-themes'; // const { resolvedTheme } = useTheme(); // const currentLogo = resolvedTheme === 'dark' && omsLogoDarkUrl ? omsLogoDarkUrl : omsLogoUrl; const currentLogo = omsLogoUrl; // Using default for now return ( // --- Force Dark Background --- // Use a specific dark color (e.g., var(--oms-black) or a dark gray from your vars) // Text color will default to light here for contrast ); }; export default Footer; //Data-Privacy-Statement-for-Candidates