From 69fc9c888f7c2259dffc1176027989e613da0576 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:58:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1441 +------------------------------------------- 1 file changed, 11 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 51e9678..da34dc4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", +const poppins = Poppins({ subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); + weight: ["400", "500", "600", "700", "800", "900"], + variable: "--font-poppins"}); export const metadata: Metadata = { - title: "SkillSage - AI Career Mentor for Career Growth", - description: "Transform your career with AI-powered skill assessment, resume optimization, personalized roadmaps, and expert career mentoring. Join 50,000+ professionals.", - keywords: "career guidance, skill assessment, resume optimizer, AI mentor, career roadmap, professional development", - metadataBase: new URL("https://skillsage.ai"), - alternates: { - canonical: "https://skillsage.ai", - }, - openGraph: { - title: "SkillSage - Your AI Career Mentor", - description: "AI-powered career guidance platform with skill assessment, resume analysis, and personalized career roadmaps.", - url: "https://skillsage.ai", - siteName: "SkillSage", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeNhaZtBJ12yFMlQGUwzyilCYU/a-modern-saas-dashboard-interface-showin-1772949267050-471e7834.png", - alt: "SkillSage AI Career Mentor Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SkillSage - Your AI Career Mentor", - description: "Transform your career with AI guidance, skill assessment, and personalized roadmaps.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeNhaZtBJ12yFMlQGUwzyilCYU/a-modern-saas-dashboard-interface-showin-1772949267050-471e7834.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SkillSage – Your AI Career Mentor", description: "Unlock your career potential with AI-powered guidance and personalized career development."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -