import type { Metadata } from "next";
import { AdminPlaceholder } from "@/components/admin/AdminPlaceholder";

export const metadata: Metadata = { title: "Source Mappings" };

export default function SourceMappingsPage() {
  return (
    <AdminPlaceholder
      title="Source Mappings"
      description="Manage which sources are assigned to which countries and categories. Adjust priority levels for ranking influence."
      icon="🔗"
    />
  );
}
