From a78a76b55c8bc12ee38b1f96ab785f441b70719f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 06:50:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2809 -------------------------------------------- 1 file changed, 2809 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d3228e..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2809 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "AIIMS Career Portal - Medical Jobs & Recruitment", - description: "Apply for nursing, technical, and administrative positions across AIIMS institutes. Transparent recruitment process with online application tracking and document verification.", - keywords: "AIIMS jobs, medical recruitment, nursing officer, government jobs, healthcare careers, AIIMS application", - metadataBase: new URL("https://aiims-career.gov.in"), - alternates: { - canonical: "https://aiims-career.gov.in", - }, - openGraph: { - title: "AIIMS Career Portal - Build Your Medical Career", - description: "Join India's premier medical institutes through transparent, digital recruitment portal", - url: "https://aiims-career.gov.in", - siteName: "AIIMS Career Portal", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/analog-landscape-city-with-buildings_23-2149661462.jpg", - alt: "AIIMS Career Portal", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AIIMS Career Portal - Medical Jobs", - description: "Apply for healthcare positions across AIIMS network", - images: ["http://img.b2bpic.net/free-photo/analog-landscape-city-with-buildings_23-2149661462.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -