Merge version_4 into main #2

Merged
bender merged 2 commits from version_4 into main 2026-03-09 11:31:22 +00:00
2 changed files with 8 additions and 40 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
description="Smart Thinking. Disciplined Delivery. Lasting Impact. We strengthen how business transformation and digital programmes are led, governed and delivered."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Explore Our Approach", href: "#approach" },
{ text: "Start Your Transformation", href: "#approach" },
{ text: "Get Started", href: "#contact" },
]}
layoutOrder="default"