import type { Metadata } from "next"; export const metadata: Metadata = { title: "Loading Route Commerce...", description: "Loading...", robots: { index: false, follow: false, }, }; export default function Loading() { return (
{/* Subtle loading animation */}

Loading

Please wait...

{/* Decorative elements */}
); }