{% extends 'base.html.twig' %} {% block title %}Home{% endblock %} {% block body %} {% include('parts/header.html.twig') %}

Welcome to Stunning

Stunning is a platform where you can share your web projects, especially front-end projects, and collaborate with others. Discover new ideas, get feedback, and work together to create amazing web experiences.

Projects recently added

{% for project in recentProjects %}
{% include 'parts/project_card.html.twig' with {'project': project, 'informations': true} %}
{% endfor %}

Popular right now

{% for project in popularProjects %}
{% include 'parts/project_card.html.twig' with {'project': project, 'informations': true} %}
{% endfor %}
{% endblock %}