From 5145d42eef3ee949f9d5857c48f0a99177daebf1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:32:40 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2d6d231..d9946cd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -90,7 +90,7 @@ export default function AboutPage() { }, ]} buttonAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/civil-engineers-collaborating-on-structu-1773156702010-b5be620a.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/civil-engineers-collaborating-on-structu-1773156702010-b5be620a.png?_wi=3" imageAlt="RetrofitMatrix team collaborating on structural analysis" mediaAnimation="slide-up" ariaLabel="About RetrofitMatrix - hero section" -- 2.49.1 From 73295c76e1a80f5dda1edfc7ee5a093c2dd180b1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:32:42 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..5c54638 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,62 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "RetrofitMatrix - Structural Retrofit Optimization Platform", + description: "Enterprise-grade structural retrofit decision-support platform for concrete degradation analysis, failure mode prediction, and optimized strengthening strategies. Professional tool for EPC companies and structural engineers.", + keywords: "structural retrofit, concrete degradation, structural analysis, EPC platform, engineering software, retrofit optimization, SaaS", + metadataBase: new URL("https://retrofitmatrix.com"), + alternates: { + canonical: "https://retrofitmatrix.com", + }, + openGraph: { + title: "RetrofitMatrix - Structural Retrofit Decision Support", + description: "Professional structural retrofit analysis platform for concrete degradation assessment and optimization.", + siteName: "RetrofitMatrix", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg", + alt: "A modern structural analysis dashboard showing a reinforced concrete beam cross-section with color-c", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "RetrofitMatrix - Structural Retrofit Platform", + description: "Enterprise-grade structural retrofit decision support system.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +65,9 @@ export default function RootLayout({ return ( - + {children}