From c02e92cdebc696e761b6ec76c1e029d4821e0e1e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 07:30:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fc9ba7c..4ac1fe9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,19 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Nexus Creative | Digital Design & Development Agency", description: "Transform your brand with award-winning digital design and development. We create exceptional experiences that drive results.", keywords: "web design, web development, creative agency, digital transformation, branding, UI/UX design", metadataBase: new URL("https://nexuscreative.com"), - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Nexus Creative | Digital Design & Development Agency", description: "Transform your brand with award-winning digital design and development services", type: "website", siteName: "Nexus Creative", url: "https://nexuscreative.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg", alt: "Nexus Creative - Digital Design Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nexus Creative | Digital Design & Development Agency", description: "Award-winning digital design and development for transformative brands", images: ["http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg"], - }, -}; + title: "Nexus Creative - Digital Excellence", description: "Transform your brand with exceptional digital experiences from Nexus Creative Studio."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +