Card Example

Create project

Deploy your new project in one-click.

This is a content
Hello from the footer !

How to use this card

Props

No props in it!

Playground

Import from @filigran/ui :

Import {Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter} from '@filigran/ui'


        <div className={tw(`flex gap-2`)}>
          <Card className="w-1-3">
            <CardHeader>
              <CardTitle>Create project</CardTitle>
              <CardDescription>Deploy your new project in one-click.</CardDescription>
            </CardHeader>
            <CardContent>
              This is a great content! Put anything in here!
            </CardContent>
            <CardFooter>
              Hi from the footer! Put anything in here!
            </CardFooter>
          </Card>
        </div>