diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cdc9a36..e1d715f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,14 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export const metadata: Metadata = { - title: "Gurman Travels - Cheap Flight Tickets & Fast Courier Services", description: "Book affordable international flight tickets and fast courier services. Lowest prices guaranteed with 24/7 customer support."}; + title: "Gurman Travels | Cheap Flight Tickets & Courier Services", description: "Book international flight tickets at the lowest prices guaranteed. Fast courier services, money transfer, and travel solutions for Canada and Punjab."}; export default function RootLayout({ children, @@ -12,8 +17,19 @@ export default function RootLayout({ }) { return ( - + {children} +