From f5bae53d90f89a3c239b79cc76885fb957589df7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:43:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1433 +------------------------------------------- 1 file changed, 8 insertions(+), 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ed113b..898e95f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,18 @@ -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 "./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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "SponsorDesk - Employee Document Management Platform", - description: "Simplify governmental procedures for employees. Manage residency renewals, work permits, sponsorship transfers, and visa applications with automated tracking and reminders.", - keywords: "employee management, residency renewal, work permit, visa application, sponsorship transfer, HR platform, document management", - openGraph: { - title: "SponsorDesk - Manage Employee Documents Effortlessly", - description: "Transform how you handle employee governmental procedures. Secure storage, automated reminders, and complete status tracking in one platform.", - siteName: "SponsorDesk", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aev8H9mL7eFI9KHWlmK4WotoLx/a-modern-clean-saas-dashboard-interface--1772966296663-693d39b4.png", - alt: "SponsorDesk Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SponsorDesk - Employee Document Management", - description: "Simplify governmental procedures and document management for your entire workforce.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aev8H9mL7eFI9KHWlmK4WotoLx/a-modern-clean-saas-dashboard-interface--1772966296663-693d39b4.png", - ], - }, + title: 'SponsorDesk - Employee Document Management', + description: 'Simplify employee document management with SponsorDesk. Manage residency renewals, work permits, sponsorship transfers, and visa applications in one secure platform.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -