From c3a52cdd101616feddb2fa9e9a778893b27ef4f3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:28:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6134a30..e325224 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); export const metadata: Metadata = { - title: "TechForge - Expert IT Software Development & Solutions", description: "Custom software development, cloud architecture, and enterprise security solutions. 250+ projects delivered for industry leaders.", keywords: "software development, IT solutions, cloud architecture, enterprise software, custom development, tech consulting", metadataBase: new URL("https://techforge.dev"), - alternates: { - canonical: "https://techforge.dev"}, - openGraph: { - title: "TechForge - Expert IT Software Development", description: "Transform your business with innovative software solutions and cutting-edge technology expertise.", url: "https://techforge.dev", siteName: "TechForge", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdxW04ITRV3Kp3hL3FqrduEiMU/a-modern-sleek-software-dashboard-interf-1772936507142-af194830.png", alt: "TechForge Software Development Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TechForge - Expert IT Software Development", description: "Custom software solutions and enterprise technology expertise.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdxW04ITRV3Kp3hL3FqrduEiMU/a-modern-sleek-software-dashboard-interf-1772936507142-af194830.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechForge - Expert Software Development", description: "Transform your software vision into reality with cutting-edge IT solutions and custom software development for enterprises and startups."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +