templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Match Meuble | Accueil
  3. {% endblock %}
  4. {% block body %}
  5.     <!-- Hero Section -->
  6.     {{ include('components/hero.html.twig') }}
  7.     <!-- About Section -->
  8.     {{ include('components/about.html.twig') }}
  9.     <!-- Pricing Section -->
  10.     {{ include('components/pricing.html.twig', { plans: plans|default(null) }) }}
  11.     <!-- Testimonials Section -->
  12.     {{ include('components/testimonials.html.twig') }}
  13.     <!-- Newsletter Section -->
  14.     {{ include('components/newsletter.html.twig') }}
  15. {% endblock %}