From d601a4f6b96f4445da37ee82159d8a983f06b35c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 11:31:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4aafc5..39a8cfa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rewired+Partners | Business Transformation & Disciplined Delivery", description: "Smart thinking and execution discipline for business transformation. We strengthen digital programmes, governance, and organizational capability for lasting impact.", keywords: "business transformation, digital programmes, organizational change, programme governance, delivery excellence, consulting", metadataBase: new URL("https://rewiredpartners.com"), - alternates: { - canonical: "https://rewiredpartners.com"}, - openGraph: { - title: "Rewired+Partners | Business Transformation", description: "Smart Thinking. Disciplined Delivery. Lasting Impact. Strengthen your organization through expert transformation leadership.", url: "https://rewiredpartners.com", siteName: "Rewired+Partners", type: "website", images: [ - { - url: "https://rewiredpartners.com/og-image.jpg", alt: "Rewired+Partners - Business Transformation & Disciplined Delivery"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Rewired+Partners | Business Transformation", description: "Smart Thinking. Disciplined Delivery. Lasting Impact.", images: ["https://rewiredpartners.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Rewired+Partners | Business Transformation & Digital Delivery", description: "Smart Thinking. Disciplined Delivery. Lasting Impact. We strengthen how business transformation and digital programmes are led, governed and delivered."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}