From 462872eadf96434c08f9fd65213d03e4261afaf1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 02:46:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32da7a7..88e59c2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Success Corridor | Career Mentoring & Soft Skills Training", description: "Transform your confidence, communication, and career with Success Corridor. Expert mentoring by Dr. Rao Vikram Singh for students and professionals.", keywords: "career mentoring, soft skills training, communication skills, personality development, interview preparation, corporate training, career coaching, student mentoring, professional development, leadership training", metadataBase: new URL("https://successcorridor.com"), - alternates: { - canonical: "https://successcorridor.com" - }, - openGraph: { - title: "Success Corridor | Career Mentoring & Soft Skills Training", description: "Transform your confidence, communication, and career with Success Corridor. Expert mentoring by Dr. Rao Vikram Singh for students and professionals.", url: "https://successcorridor.com", siteName: "Success Corridor", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-therapy-meeting-indoors_23-2148913061.jpg", alt: "Success Corridor - Premium Career Mentoring" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Success Corridor | Career Mentoring & Soft Skills Training", description: "Transform your confidence, communication, and career with Success Corridor mentoring.", images: ["http://img.b2bpic.net/free-photo/close-up-therapy-meeting-indoors_23-2148913061.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Success Corridor", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +