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",
|
title: "Feature 1",
|
||||||
description: "Organize, connect, and track your goals using the GoalGrid. Stay aligned and in sync with your strategic objectives.",
|
description: "Description for Feature 1",
|
||||||
imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065418_xo3ezn.png",
|
imgSrc: "/images/feature1.png",
|
||||||
|
vector: "/vectors/feature1.svg", // Added vector property
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Built for Enterprises",
|
title: "Feature 2",
|
||||||
description: "Everyday platform ensures enterprise-grade deployment, security, and data governance, all with the simplicity of one centrally managed platform.",
|
description: "Description for Feature 2",
|
||||||
imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065356_gbkov8.png",
|
imgSrc: "/images/feature2.png",
|
||||||
|
vector: "/vectors/feature2.svg", // Added vector property
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Integrate your Workflows",
|
title: "Feature 3",
|
||||||
description: "Connect Everyday to your existing tools, integrate important business processes, and build more powerful applications.",
|
description: "Description for Feature 3",
|
||||||
imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065455_whfipm.png",
|
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.”`
|
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