import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; const FeatureList = [ { title: 'What is OpenSign™?', PNGUrl: '/img/logo.svg', description: ( <>
At OpenSign Labs, we're redefining the landscape of digital signatures. Our mission is to make digital document signing not just a formality, but an integral part of your organization's digital transformation journey. OpenSign™ Docs is your gateway to a world where efficiency, security and simplicity reign supreme.
), }, { title: 'Why Choose OpenSign™?', PNGUrl: '/img/whychooseus.svg', description: ( <>
), }, { title: 'Getting Started', PNGUrl: '/img/getstarted.svg', description: ( <>

Dive into our comprehensive guides and tutorials. Whether you're a new user or looking to integrate OpenSign™ into your existing workflow, we have everything you need to get started.

), }, ]; function Feature({PNGUrl, title, description}) { return (

{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }