From 55212cc714037963f544c32585ce24f54fa380a9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:21:07 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cdc9a36..6611a4f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,16 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; + +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 +19,22 @@ export default function RootLayout({ }) { return ( - - {children} + + + + {children} + +