import type { Metadata } from "next"; import { LoadingFade } from "@/components/transitions/LoadingFade"; export const metadata: Metadata = { title: "Loading — Route Commerce", description: "Loading content from Route Commerce", robots: { index: false, follow: false, }, }; export default function Loading() { // No skeleton. The previous page stays visible while the next one // streams in, and the View Transition API crossfades them. This // thin top bar is the only signal that navigation is in flight. return ; }