templates/main/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
    {% block title %}Home - NOVA-LINK{% endblock %}
    
    {% block body %}
    <div class="hero-section">
        <div class="container">
            <h1 class="hero-title">Advanced Collision Detection Solutions</h1>
            <p class="hero-subtitle">Specialized in SHA-256 and Scrypt algorithm vulnerabilities research</p>
            <div class="hero-buttons">
                <a href="{{ path('app_what_we_do') }}" class="hero-btn btn-primary">What We Do</a>
                <a href="{{ path('app_contact') }}" class="hero-btn btn-outline">Contact Us</a>
            </div>
        </div>
    </div>
    {% endblock %}