forked from UKSOURCE/hailearning.edu.vn
25 lines
543 B
TypeScript
25 lines
543 B
TypeScript
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}
|
||
</>
|
||
);
|
||
}
|