Files
uldp.edu.vn/app/visa/layout.tsx
2026-02-05 05:55:00 +07:00

25 lines
543 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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}
</>
);
}