Build your Design System.
Add Toolkit to your app.
Collection of components and templates that you can use to build your pages.
# Install the components you need...
$ php bin/console ux:install card
$ php bin/console ux:install button
# ... and find them in your templates/components folder!
$ tree templates/components
templates/components
├── Button.html.twig
├── Card
│ ├── Content.html.twig
│ ├── Description.html.twig
│ ├── Footer.html.twig
│ ├── Header.html.twig
│ └── Title.html.twig
└── Card.html.twig
{# Freshly installed components are ready to use! #}
<twig:Card>
<twig:Card:Header>
<twig:Card:Title>Symfony is cool</twig:Card:Title>
<twig:Card:Description>
Symfony is a set of reusable PHP components...
</twig:Card:Description>
</twig:Card:Header>
<twig:Card:Content>
... and a PHP framework for web projects
</twig:Card:Content>
<twig:Card:Footer>
<twig:Button as="a" href="https://symfony.com" target="_blank">
Visit symfony.com
</twig:Button>
</twig:Card:Footer>
</twig:Card>