import React from "react"; import Image from "next/image"; export interface Image { height: number; width: number; source: string; } export interface ThemedImageProps { title?: string; dark?: Image; light?: Image; priority?: boolean; } export function ThemedImage({ title, light, dark, priority = false, }: ThemedImageProps) { return ( <>