Block Features Icon

Software as a Service

We are a cloud software, you need Internet access to use it.

Price per company

The Plus Service price is per company. If you have 3 companies, you will need to pay for 3 Plus Services.

SII Synchronization

Your tax documents are immediately sent to SII and we monitor their status.

Feature 4

Content of feature 4.

Feature 1

Content 1

Feature 2

Content 2

Feature 3

Content 3

Feature 4

Content 4

Feature 5

Content 5

Feature 1

Content 1

Feature 2

Content 2

Feature 3

Content 3

Feature 4

Content 4

Feature 5

Content 5

Feature 6

Content 6

Feature 7

Content 7

Feature 8

Content 8
{# derafu_twig:templates/pages/components/block-features-icon.html.twig #}

{% extends 'layouts/default.html.twig' %}

{% block content %}

{# Case 4 elements (one row of 4) #}
<twig:block-features-icon
    class="my-4"
    :features="[
        {
            icon: 'fa-solid fa-cloud',
            title: 'Software as a Service',
            content: 'We are a cloud software, you need Internet access to <a href=\'https://www.example.com/\' target=\'_blank\'>use it.</a>'
        },
        {
            icon: 'fa-solid fa-money-bill',
            title: '<a href=\'https://www.example.com/\' target=\'_blank\'>Price</a> per company',
            content: 'The Plus Service price is per company. If you have 3 companies, you will need to pay for 3 Plus Services.'
        },
        {
            icon: 'fa-solid fa-arrows-left-right',
            title: 'SII Synchronization',
            content: 'Your tax documents are immediately sent to SII and we monitor their status.'
        },
        {
            icon: 'fa-solid fa-check',
            title: 'Feature 4',
            content: 'Content of feature 4.'
        }
    ]"
/>

{# Case 5 elements (row of 3 + row of 2) #}
<twig:block-features-icon
    class="my-4"
    :features="[
        {
            icon: 'fa-solid fa-cloud',
            title: 'Feature 1',
            content: 'Content 1'
        },
        {
            icon: 'fa-solid fa-money-bill',
            title: 'Feature 2',
            content: 'Content 2'
        },
        {
            icon: 'fa-solid fa-arrows-left-right',
            title: 'Feature 3',
            content: 'Content 3'
        },
        {
            icon: 'fa-solid fa-check',
            title: 'Feature 4',
            content: 'Content 4'
        },
        {
            icon: 'fa-solid fa-star',
            title: 'Feature 5',
            content: 'Content 5'
        }
    ]"
/>

{# Case 8 elements (two rows of 4) #}
<twig:block-features-icon
    class="my-4"
    :features="[
        {
            icon: 'fa-solid fa-cloud',
            title: 'Feature 1',
            content: 'Content 1'
        },
        {
            icon: 'fa-solid fa-money-bill',
            title: 'Feature 2',
            content: 'Content 2'
        },
        {
            icon: 'fa-solid fa-arrows-left-right',
            title: 'Feature 3',
            content: 'Content 3'
        },
        {
            icon: 'fa-solid fa-check',
            title: 'Feature 4',
            content: 'Content 4'
        },
        {
            icon: 'fa-solid fa-star',
            title: 'Feature 5',
            content: 'Content 5'
        },
        {
            icon: 'fa-solid fa-heart',
            title: 'Feature 6',
            content: 'Content 6'
        },
        {
            icon: 'fa-solid fa-bell',
            title: 'Feature 7',
            content: 'Content 7'
        },
        {
            icon: 'fa-solid fa-user',
            title: 'Feature 8',
            content: 'Content 8'
        }
    ]"
/>

{% endblock %}