From 5be90910c02525f59d43e0a86cc48161860e97b9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 22:41:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++----------------------------------------- 1 file changed, 7 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2d2ca3e..95a53e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nexora Digital - Web Design & Digital Marketing Agency", - description: "Professional digital agency offering web development, UI/UX design, branding, and digital marketing solutions for startups and SMEs.", - keywords: "web design, digital agency, web development, branding, digital marketing, UI/UX design, Singapore", - metadataBase: new URL("https://nexoradigital.com"), - alternates: { - canonical: "https://nexoradigital.com", - }, - openGraph: { - title: "Nexora Digital - Smart Digital Solutions", - description: "Transform your online presence with our comprehensive digital solutions. Web design, development, branding, and marketing services.", - url: "https://nexoradigital.com", - siteName: "Nexora Digital", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/a-modern-website-design-mockup-showing-c-1772750212632-f809e8b5.png", - alt: "Nexora Digital - Digital Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Nexora Digital - Smart Digital Solutions", - description: "Professional digital agency for web design, development, and marketing.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/a-modern-website-design-mockup-showing-c-1772750212632-f809e8b5.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Nexora Digital - Web Design & Digital Solutions", description: "Build, launch, and grow your digital presence with Nexora Digital. We design powerful websites and digital strategies that help businesses succeed."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}