import { FeatureGrid } from '@/components/ui/feature-grid-1'; // Adjust path as needed
/**
* A demo component to showcase the FeatureGrid.
*/
export default function FeatureGridDemo() {
const featureList = [
'Unlimited forms',
'Unlimited submissions',
'Collect payments',
'Collect signatures',
'Collect file uploads',
'Custom "Thank You" page',
'Self email notifications',
'Redirect on completion',
'Conditional logic & calculations',
'Prevent duplicate submissions',
'Password protect forms',
'Close forms on limit or date',
'Answer piping',
'45+ languages & RTL support',
'Google Sheets integration',
'Notion integration',
'Airtable integration',
'Zapier integration',
'Make integration',
'Webhooks',
];
return (
<div className="bg-background">
<FeatureGrid
title="Build beautiful forms for free"
highlightedText="free"
description={
<>
Paywalls getting in the way? Not anymore. Tally gives you unlimited
forms and submissions, completely free, as long as you stay within
our{' '}
<a href="#" className="underline text-primary underline-offset-4">
fair usage guidelines
</a>
.
</>
}
features={featureList}
moreLink={{
href: '#',
text: 'And many, many more',
}}
/>
</div>
);
}