From 7ece1993fb0d38f8e71b999d7151e9f7b220e234 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:20:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 71 +++++----------------------------------------- 1 file changed, 7 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f59d789..bb87a09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Zyber Zing Global - Technology Solutions & Software Development", - description: "Custom software development, AI engineering, blockchain, web & mobile apps, cloud infrastructure. Trusted technology partner for startups and enterprises worldwide.", - keywords: "software development, AI engineering, blockchain, web development, mobile apps, cloud infrastructure, technology solutions, custom software, AI/ML, SaaS development", - metadataBase: new URL("https://zyberzing.com"), - alternates: { - canonical: "https://zyberzing.com", - }, - openGraph: { - title: "Zyber Zing - Global Technology Solutions", - description: "Transform your vision into reality with Zyber Zing. Custom software, AI engineering, blockchain, and cloud solutions.", - url: "https://zyberzing.com", - siteName: "Zyber Zing", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZrYlFLhLjWPzd5ntCD5GOqvUv/a-modern-technology-hero-background-feat-1772811458631-d1b3869c.png", - alt: "Zyber Zing Technology Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Zyber Zing - Technology Solutions", - description: "Global technology partner for custom software, AI, blockchain, and cloud solutions.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZrYlFLhLjWPzd5ntCD5GOqvUv/a-modern-technology-hero-background-feat-1772811458631-d1b3869c.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Zyber Zing - Global Technology Solutions", description: "Custom software development, AI engineering, blockchain, web & mobile apps, and cloud infrastructure. Trusted by startups and enterprises worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}