fix featuresdata type error
This commit is contained in:
parent
4fa54670a9
commit
2eeffe45a8
@ -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.”`
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user