import type { Metadata } from "next"; export const metadata: Metadata = { title: "Visaway – Immigration & Visa Consulting HTML Template", description: "Visaway – Immigration & Visa Consulting HTML Template", authors: [{ name: "Gramentheme" }], openGraph: { type: "website", locale: "en_US", url: "http://localhost:3000", }, }; export default function VisaLayout({ children, }: { children: React.ReactNode; }) { return ( <> {/* Main Content */} {children} ); }