From af8fb7886cf5eaa79b8a26b449bfa04dba99ba3f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:03:03 +0000 Subject: [PATCH 1/3] 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 f6c52ad..1de91da 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -75,7 +75,7 @@ export default function AboutPage() { icon: Sparkles, }, ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-digital-workspace-showing-customer-int-1773194514718-0dc48c25.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-digital-workspace-showing-customer-int-1773194514718-0dc48c25.png?_wi=3" imageAlt="Cursor platform workspace" mediaAnimation="slide-up" imagePosition="right" From 9a41140de5e9195acbbd02355461e716b18b10a6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:03:03 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..c18563e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ 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: "Cursor - AI Product Intelligence Platform", + description: "Upload customer interviews, analytics, and data. Get AI insights to decide what to build next. Streamline prioritization, competitor analysis, and GTM strategy.", + keywords: "product management, AI analytics, prioritization, customer research, competitive intelligence", + metadataBase: new URL("https://cursor.ai"), + alternates: { + canonical: "https://cursor.ai", + }, + openGraph: { + title: "Cursor - Product Intelligence Platform", + description: "Transform how product teams make decisions. Unified research, analytics, and strategy platform.", + url: "https://cursor.ai", + siteName: "Cursor", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-modern-product-management-dashboard-sh-1773194513380-710ae820.png", + alt: "Cursor product intelligence platform dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Cursor - Product Intelligence Platform", + description: "AI-powered insights for product leaders. Centralize research, analytics, and strategy.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-modern-product-management-dashboard-sh-1773194513380-710ae820.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}