From 809fe131003dc996831599519598f177b16a3d51 Mon Sep 17 00:00:00 2001 From: Aditya Date: Sat, 8 Nov 2025 13:36:10 +0530 Subject: [PATCH] added hover effect --- pages/index.page.tsx | 75 ++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 44 deletions(-) diff --git a/pages/index.page.tsx b/pages/index.page.tsx index bd2479255..949dd33d1 100644 --- a/pages/index.page.tsx +++ b/pages/index.page.tsx @@ -261,51 +261,38 @@ const Home = (props: any) => {

{/* Feature 4 section*/} -
-
-

- Streamline testing and validation -

-

- Simplify your validation logic to reduce your code’s complexity - and save time on development. Define constraints for your data - structures to catch and prevent errors, inconsistencies, and - invalid data. -

-
-
-

- Exchange data seamlessly -

-

- Establish a common language for data exchange, no matter the - scale or complexity of your project. Define precise validation - rules for your data structures to create shared understanding - and increase interoperability across different systems and - platforms. -

-
-
-

- Document your data -

-

- Create a clear, standardized representation of your data to - improve understanding and collaboration among developers, - stakeholders, and collaborators. -

-
-
-

- Vibrant tooling ecosystem -

-

- Adopt JSON Schema with an expansive range of community-driven - tools, libraries, and frameworks across many programming - languages. -

-
+
+ {[ + { + title: "Streamline testing and validation", + desc: "Simplify your validation logic to reduce your code’s complexity and save time on development. Define constraints for your data structures to catch and prevent errors, inconsistencies, and invalid data." + }, + { + title: "Exchange data seamlessly", + desc: "Establish a common language for data exchange, no matter the scale or complexity of your project. Define precise validation rules for your data structures to create shared understanding and increase interoperability across systems." + }, + { + title: "Document your data", + desc: "Create a clear, standardized representation of your data to improve understanding and collaboration among developers, stakeholders, and collaborators." + }, + { + title: "Vibrant tooling ecosystem", + desc: "Adopt JSON Schema with an expansive range of community-driven tools, libraries, and frameworks across many programming languages." + } + ].map((item, index) => ( +
+
+

+ {item.title} +

+

{item.desc}

+
+ ))}
+