From 2eeffe45a8fe19767577e00b774cadc280f7ea22 Mon Sep 17 00:00:00 2001 From: codebox283 Date: Sun, 16 Feb 2025 19:59:48 +0530 Subject: [PATCH] fix featuresdata type error --- app/integrations/page.tsx | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/app/integrations/page.tsx b/app/integrations/page.tsx index 0f3fa49..81c4948 100644 --- a/app/integrations/page.tsx +++ b/app/integrations/page.tsx @@ -63,23 +63,33 @@ const contents = [ }, ]; -const featuresData = [ +type Feature = { + title: string; + description: string; + imgSrc: string; + vector: string; +}; + +const featuresData: Feature[] = [ { - title: "Create Series using Drag and Drop", - description: "Organize, connect, and track your goals using the GoalGrid. Stay aligned and in sync with your strategic objectives.", - imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065418_xo3ezn.png", + title: "Feature 1", + description: "Description for Feature 1", + imgSrc: "/images/feature1.png", + vector: "/vectors/feature1.svg", // Added vector property }, { - title: "Built for Enterprises", - description: "Everyday platform ensures enterprise-grade deployment, security, and data governance, all with the simplicity of one centrally managed platform.", - imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065356_gbkov8.png", + title: "Feature 2", + description: "Description for Feature 2", + imgSrc: "/images/feature2.png", + vector: "/vectors/feature2.svg", // Added vector property }, { - title: "Integrate your Workflows", - description: "Connect Everyday to your existing tools, integrate important business processes, and build more powerful applications.", - imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065455_whfipm.png", + title: "Feature 3", + description: "Description for Feature 3", + imgSrc: "/images/feature3.png", + vector: "/vectors/feature3.svg", // Added vector property }, -]; +] const words = `“Need more? Our integration capabilities are constantly expanding, with new additions regularly introduced to our platform.”`