From d9dea5b09e3d5e098554b1682a42e7d24947e356 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 02:38:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1426 +------------------------------------------- 1 file changed, 8 insertions(+), 1418 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 307f2dc..ee5b317 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1429 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Outfit } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Institute | Accredited Programs & Career Advancement", - description: "Discover world-class programs designed for ambitious learners. Join thousands of successful graduates. Explore undergraduate, graduate, and certification programs.", - keywords: "accredited institute, career advancement, professional education, graduate programs, certification, continuing education", - openGraph: { - title: "Professional Institute | Transform Your Future", - description: "Advance your career with accredited programs from a trusted educational institution. Explore flexible learning options for students, professionals, and working adults.", - siteName: "Professional Institute", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Professional Institute | Advance Your Career", - description: "Discover accredited programs designed for ambitious learners seeking career transformation and professional growth.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Global Computer Institute", description: "Empowering the next generation of tech leaders with world-class computing education."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -