Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -166,7 +166,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Customer interview synthesis interface"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Upload customer interview recordings, transcripts, and feedback surveys. Our AI automatically identifies key themes, pain points, and feature requests. Tag and organize insights by customer segment, product area, or outcome.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-digital-workspace-showing-customer-int-1773194514718-0dc48c25.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmOm4Da3KreINkZsh4Ihe8GzeZ/a-digital-workspace-showing-customer-int-1773194514718-0dc48c25.png?_wi=2",
|
||||
imageAlt: "Customer interview synthesis",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user