Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -91,7 +91,7 @@ export default function MethodologyPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-3d-isometric-view-of-a-reinforced-conc-1773156671407-d5e0b4fe.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-3d-isometric-view-of-a-reinforced-conc-1773156671407-d5e0b4fe.jpg?_wi=2"
|
||||
imageAlt="3D structural analysis visualization"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Methodology hero section"
|
||||
@@ -157,7 +157,7 @@ export default function MethodologyPage() {
|
||||
value: "92%",
|
||||
title: "Prediction Accuracy",
|
||||
description: "Validated against 500+ real-world retrofit projects",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg?_wi=3",
|
||||
imageAlt: "Retrofit strategy comparison analysis",
|
||||
},
|
||||
{
|
||||
@@ -165,7 +165,7 @@ export default function MethodologyPage() {
|
||||
value: "40%",
|
||||
title: "Cost Optimization",
|
||||
description: "Average retrofit expenditure reduction vs. traditional methods",
|
||||
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=2",
|
||||
imageAlt: "Engineering team collaboration workspace",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function MethodologyPage() {
|
||||
value: "ISO/IEC",
|
||||
title: "Standards Compliant",
|
||||
description: "Adheres to international engineering standards and best practices",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg?_wi=3",
|
||||
imageAlt: "Structural analysis dashboard interface",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function OptimizerPage() {
|
||||
{ text: "View Demo", href: "#" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg?_wi=2"
|
||||
imageAlt="RetrofitMatrix optimizer tool interface"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Optimizer tool hero section"
|
||||
@@ -160,7 +160,7 @@ export default function OptimizerPage() {
|
||||
content: "Yes. The optimizer allows unlimited scenario comparison. Save baselines, modify parameters, and generate side-by-side cost-benefit analyses for board presentations and client discussions.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg?_wi=2"
|
||||
imageAlt="Retrofit optimization comparison analysis"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
|
||||
@@ -92,7 +92,7 @@ export default function HomePage() {
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg?_wi=1"
|
||||
imageAlt="RetrofitMatrix structural analysis dashboard interface"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
@@ -203,7 +203,7 @@ export default function HomePage() {
|
||||
value: "500+",
|
||||
title: "Structures Analyzed",
|
||||
description: "Successful retrofit assessments completed",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-3d-isometric-view-of-a-reinforced-conc-1773156671407-d5e0b4fe.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-3d-isometric-view-of-a-reinforced-conc-1773156671407-d5e0b4fe.jpg?_wi=1",
|
||||
imageAlt: "3D structural analysis visualization",
|
||||
},
|
||||
{
|
||||
@@ -211,7 +211,7 @@ export default function HomePage() {
|
||||
value: "92%",
|
||||
title: "Accuracy Rate",
|
||||
description: "NDT correlation validation across projects",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-technical-comparison-chart-showing-fou-1773156670872-02e326e3.jpg?_wi=1",
|
||||
imageAlt: "Retrofit strategy comparison analysis",
|
||||
},
|
||||
{
|
||||
@@ -219,7 +219,7 @@ export default function HomePage() {
|
||||
value: "40%",
|
||||
title: "Cost Optimization",
|
||||
description: "Average retrofit expenditure reduction achieved",
|
||||
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=1",
|
||||
imageAlt: "Engineering team collaboration workspace",
|
||||
},
|
||||
]}
|
||||
@@ -303,7 +303,7 @@ export default function HomePage() {
|
||||
name: "Rajesh Kumar",
|
||||
handle: "Senior Structural Engineer, L&T",
|
||||
testimonial: "RetrofitMatrix streamlined our retrofit decision process. The 3D visualization and multi-strategy comparison saved us weeks on complex assessments.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-senior-struct-1773156673665-8acc0972.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-senior-struct-1773156673665-8acc0972.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -311,7 +311,7 @@ export default function HomePage() {
|
||||
name: "Priya Deshmukh",
|
||||
handle: "Project Manager, Afcons",
|
||||
testimonial: "The NDT integration is seamless and the cost optimization recommendations have improved our project economics significantly.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-project-manag-1773156671327-92ddcf2e.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-project-manag-1773156671327-92ddcf2e.jpg?_wi=1",
|
||||
imageAlt: "Priya Deshmukh",
|
||||
},
|
||||
{
|
||||
@@ -335,7 +335,7 @@ export default function HomePage() {
|
||||
name: "Rohit Singh",
|
||||
handle: "Infrastructure Technology Lead",
|
||||
testimonial: "We've integrated RetrofitMatrix into our standard retrofit workflow. The ROI is exceptional and the support team is outstanding.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-senior-struct-1773156673665-8acc0972.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-senior-struct-1773156673665-8acc0972.jpg?_wi=2",
|
||||
imageAlt: "Rohit Singh",
|
||||
},
|
||||
{
|
||||
@@ -343,7 +343,7 @@ export default function HomePage() {
|
||||
name: "Meera Iyer",
|
||||
handle: "Structural Engineering Manager",
|
||||
testimonial: "Finally, a platform that understands the complexity of real-world concrete degradation. The recommendations are scientifically sound and practically implementable.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-project-manag-1773156671327-92ddcf2e.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/professional-headshot-of-a-project-manag-1773156671327-92ddcf2e.jpg?_wi=2",
|
||||
imageAlt: "Meera Iyer",
|
||||
},
|
||||
]}
|
||||
@@ -392,7 +392,7 @@ export default function HomePage() {
|
||||
content: "Yes. Enterprise accounts include comprehensive report generation, data export in multiple formats, and API access for integration into your existing project management systems.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/technical-illustration-showing-a-concret-1773156671191-5ea39900.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/technical-illustration-showing-a-concret-1773156671191-5ea39900.jpg?_wi=1"
|
||||
imageAlt="Structural retrofit strengthening technique"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function PricingPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/a-modern-structural-analysis-dashboard-s-1773156668765-b6234675.jpg?_wi=4"
|
||||
imageAlt="RetrofitMatrix structural analysis dashboard"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Pricing hero section"
|
||||
@@ -202,7 +202,7 @@ export default function PricingPage() {
|
||||
content: "Professional plans include email support (24-48 hour response). Enterprise plans include priority 24/7 phone and email support, dedicated account management, and quarterly business reviews.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/technical-illustration-showing-a-concret-1773156671191-5ea39900.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9uBCdwZTbaTO3HYdkY10yESE/technical-illustration-showing-a-concret-1773156671191-5ea39900.jpg?_wi=2"
|
||||
imageAlt="Structural retrofit strengthening technique"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user