import type { Metadata } from "next"; import Script from "next/script"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import Header from "./components/Header"; import Footer from "./components/Footer"; import { Inter, Space_Grotesk } from "next/font/google"; const ASSET_URL = process.env.NEXT_PUBLIC_API_URL || ""; const inter = Inter({ subsets: ["latin"], variable: "--font-inter", }); const spaceGrotesk = Space_Grotesk({ subsets: ["latin"], variable: "--font-space-grotesk", }); export const metadata: Metadata = { title: "VisaService - Dịch vụ visa uy tín", description: "Dịch vụ visa chuyên nghiệp với tỷ lệ thành công 99%. Hỗ trợ visa cho hơn 50 quốc gia.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { // return ( {children} ); } // // // {/* Font Awesome 6.4.0 from CDN - for reliable icon support */} // // {/* Bootstrap min.css */} // // {/* Animate.css */} // // {/* Magnific Popup.css */} // // {/* MeanMenu.css */} // // {/* Odometer.css */} // // {/* Swiper Bundle.css */} // // {/* Nice Select.css */} // // {/* Main.css */} // // // //
//
{children}
//