templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.             <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  8.     <script type="module" crossorigin="" src="{{asset('js/1.js?v=1')}}"></script>
  9.     <script src="{{asset('js/2.js?v=1')}}" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  10.     <script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;9623a44fde1a8648&quot;,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfEdge&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;version&quot;:&quot;2025.7.0&quot;,&quot;token&quot;:&quot;819a3f0a07034fb290d6a722dd19f377&quot;}" crossorigin="anonymous"></script>
  11.                 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  12.              {# <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> #}
  13.             <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous" defer></script>
  14.         <script src="{{asset('js/1.js?v=1')}}"></script>
  15.         <script src="{{asset('js/2.js?v=1')}}"></script>
  16.         <script src="{{asset('js/3.js?v=1')}}"></script>
  17.             {# <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> #}
  18.         <link rel="stylesheet" href="{{asset('css/style.css?v=2')}}">
  19.                 <link rel="stylesheet" href="{{asset('css/style1.css?v=2')}}">
  20.             <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  21.             <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer">
  22.         {% block stylesheets %}
  23.             {{ encore_entry_link_tags('app') }}
  24.         {% endblock %}
  25.         {% block javascripts %}
  26.             {{ encore_entry_script_tags('app') }}
  27.         {% endblock %}
  28.         <script>
  29.   document.addEventListener("DOMContentLoaded", function () {
  30.     const toggleButton = document.querySelector('button[data-state]');
  31.     toggleButton.addEventListener("click", function () {
  32.       const currentState = toggleButton.getAttribute("data-state");
  33.       const newState = currentState === "open" ? "closed" : "open";
  34.       toggleButton.setAttribute("data-state", newState);
  35.     });
  36.   });
  37. </script>
  38. <script>
  39.     const burger = document.querySelector('button[aria-haspopup="dialog"]');
  40.     const mobileMenu = document.getElementById('mobile-menu');
  41.     burger.addEventListener('click', () => {
  42.         mobileMenu.classList.toggle('hidden');
  43.     });
  44. </script>
  45. <style>
  46. .topnav {
  47.   overflow: hidden;
  48.   background-color: white;
  49. }
  50. .topnav a {
  51.   font-weight: bold;
  52.   float: left;
  53.   display: block;
  54.   color: black;
  55.   text-align: center;
  56.   padding: 14px 16px;
  57.   text-decoration: none;
  58.   font-size: 17px;
  59. }
  60. .topnav a:hover {
  61.   background-color: #ddd;
  62.   color: black;
  63. }
  64. .topnav a.active {
  65.   background-color: #04AA6D;
  66.   color: white;
  67. }
  68. .topnav .icon {
  69.   display: none;
  70. }
  71. @media screen and (max-width: 600px) {
  72.   .topnav a:not(:first-child) {display: none;}
  73.   .topnav a.icon {
  74.     float: right;
  75.     display: block;
  76.   }
  77. }
  78. @media screen and (max-width: 600px) {
  79.   .topnav.responsive {position: relative;}
  80.   .topnav.responsive .icon {
  81.     position: absolute;
  82.     right: 0;
  83.     top: 0;
  84.   }
  85.   .topnav.responsive a {
  86.     float: none;
  87.     display: block;
  88.     text-align: left;
  89.   }
  90. }
  91. .topnav.responsive .menu-links {
  92.   display: block;
  93.   flex-direction: column;
  94.   margin-top: 10px;
  95. }
  96. </style>
  97.     </head>
  98.     <body>
  99.     <div class="topnav flex justify-between items-center px-4" id="myTopnav">
  100.     <!-- Logo -->
  101.     <a href="/" class="flex items-center">
  102.         <span class="font-bold text-2xl bg-gradient-to-r from-red-600 to-blue-800 bg-clip-text text-transparent">
  103.             <img src="{{asset('img/logo.png')}}" style="width:150px;">
  104.         </span>
  105.     </a>
  106.     <!-- Menu -->
  107.     <div class="menu-links space-x-6 hidden md:flex">
  108.         <a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
  109.         <a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
  110.         <a href="#testimonials" class="text-gray-700 hover:text-blue-800 font-medium transition">Testimonials</a>
  111.         <a href="{{ path('add_company') }}" class="text-gray-700 hover:text-blue-800 font-medium transition">Pricing</a>
  112.     </div>
  113.     <!-- Icone burger pour mobile -->
  114.     <a href="javascript:void(0);" class="icon md:hidden" onclick="myFunction()">
  115.         <i class="fa fa-bars"></i>
  116.     </a>
  117. </div>
  118.     {# <div class="topnav" id="myTopnav">
  119.         <a href="/" class="flex items-center"><span class="font-bold text-2xl bg-gradient-to-r from-red-600 to-blue-800 bg-clip-text text-transparent">Made in USA Global</span></a>
  120.         <a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
  121.         <a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
  122.         <a href="#testimonials" class="text-gray-700 hover:text-blue-800 font-medium transition">Testimonials</a>
  123.         <a href="{{ path('add_company') }}" class="text-gray-700 hover:text-blue-800 font-medium transition">Pricing</a>
  124.         {# <a class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&amp;_svg]:pointer-events-none [&amp;_svg]:size-4 [&amp;_svg]:shrink-0 text-primary-foreground h-10 px-4 py-2 bg-blue-800 hover:bg-blue-900">
  125.             Get Started
  126.         </a> #}
  127.         {# <a href="javascript:void(0);" class="icon" onclick="myFunction()">
  128.             <i class="fa fa-bars"></i>
  129.         </a>
  130.     </div>  #}
  131.     {# <header class="sticky top-0 z-50 w-full transition-all duration-300 bg-transparent py-4">
  132.         <div class="container mx-auto px-4">
  133.             <div class="flex items-center justify-between">
  134.                 <div class="flex items-center">
  135.                     <a href="/" class="flex items-center"><span class="font-bold text-2xl bg-gradient-to-r from-red-600 to-blue-800 bg-clip-text text-transparent">Made in USA Global</span></a>
  136.                 </div>
  137.                 <nav class="hidden md:flex items-center space-x-6">
  138.                     <a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
  139.                     <a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
  140.                     <a href="#testimonials" class="text-gray-700 hover:text-blue-800 font-medium transition">Testimonials</a><a href="#pricing" class="text-gray-700 hover:text-blue-800 font-medium transition">Pricing</a>
  141.                     <button
  142.                         class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&amp;_svg]:pointer-events-none [&amp;_svg]:size-4 [&amp;_svg]:shrink-0 text-primary-foreground h-10 px-4 py-2 bg-blue-800 hover:bg-blue-900"
  143.                     >
  144.                         Get Started
  145.                     </button>
  146.                 </nav>
  147.                 <div class="md:hidden">
  148.                     <button
  149.                         class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&amp;_svg]:pointer-events-none [&amp;_svg]:size-4 [&amp;_svg]:shrink-0 hover:bg-accent hover:text-accent-foreground h-10 w-10"
  150.                         type="button"
  151.                         aria-haspopup="dialog"
  152.                         aria-expanded="false"
  153.                         aria-controls="radix-:r3:"
  154.                         data-state="closed"
  155.                     >
  156.                         <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-menu h-6 w-6">
  157.                             <line x1="4" x2="20" y1="12" y2="12"></line>
  158.                             <line x1="4" x2="20" y1="6" y2="6"></line>
  159.                             <line x1="4" x2="20" y1="18" y2="18"></line>
  160.                         </svg>
  161.                     </button>
  162.                 </div>
  163.             </div>
  164.         </div>
  165.     </header> #}
  166.         {# <nav class="navbar navbar-expand-lg bg-primary">
  167.             <div class="container">
  168.                 <a class="navbar-brand" href="/"><img src="{{asset('img/logo.png')}}" width="220"></a>
  169.                 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  170.                     <span class="navbar-toggler-icon"></span>
  171.                 </button>
  172.                 <div class="collapse navbar-collapse" id="navbarSupportedContent">
  173.                     <ul class="navbar-nav mr-auto">
  174.                     <li class="nav-item active">
  175.                         <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
  176.                     </li>
  177.                     <li class="nav-item">
  178.                         <a class="nav-link" href="#service">Our Service</a>
  179.                     </li>
  180.                      <li class="nav-item">
  181.                         <a class="nav-link" href="#">Benefits</a>
  182.                     </li>
  183.                     <li class="nav-item">
  184.                         <a class="nav-link" href="{{path('app_company_new')}}">register</a>
  185.                     </li> 
  186.                     </ul>
  187.                 </div>
  188.             </div>
  189.         </nav> #}
  190.         <main class="flex-grow">{% block body %}{% endblock %}</main>
  191.         <footer class="bg-white pt-4 border-top">
  192.    <!-- Footer Links -->
  193.    <div class="container text-center text-md-left">
  194.       <!-- Grid row -->
  195.       <div class="row">
  196.          <!-- Grid column -->
  197.          <div class="col-md-6 mx-auto">
  198.             <!-- Content -->
  199.             <div class="font-weight-bold text-uppercase mt-3 mb-4">
  200.                 <a href="/" class="flex items-center"><span class="font-bold text-2xl bg-gradient-to-r from-red-600 to-blue-800 bg-clip-text text-transparent"><img src="{{asset('img/logo.png')}}" style="width:150px;"></span></a>
  201.             </div>
  202.             {# <p class="small-text" style="text-align: left;">
  203.              The main activity of the company will consist of the operation of a digital B2B platform specialized in connecting U.S. manufacturers with international buyers, facilitating commercial transactions, lead generation, and digital marketing to promote "Made in USA" products in global markets, with a focus on industries such as medical equipment, renewable energies, chemical products, electronics, automotive, and other related fields, all through an exclusive subscription model and without transaction commissions.</p> #}
  204.          </div>
  205.          <!-- Grid column -->
  206.          <hr class="clearfix w-100 d-md-none">
  207.          <!-- Grid column -->
  208.          <div class="col-md-3 mx-auto">
  209.             <!-- Links -->
  210.             <h5 class="keep font-weight-bold text-uppercase mt-3 mb-4" style="font-weight: bold;">Contact us</h5>
  211.             <ul class="list-unstyled" style="text-align: left; font-weight: bold;">
  212.                {# <li>
  213.                   <a href="javascript:void(0);">
  214.                   <i class="fa fa-map-marker-alt"></i> On est partout au maroc
  215.                   </a>
  216.                </li> #}
  217.                <li>
  218.                   <a href="tel:+34632709911">
  219.                   <i class="fa fa-phone"></i> +34 632709911</a>
  220.                </li>
  221.                <li>
  222.                   <a href="mailto:contact@madeinusaglobal.com">
  223.                   <i class="far fa-envelope"></i> contact@madeinusaglobal.com
  224.                   </a>
  225.                </li>
  226.                <li>
  227.                   <a href="https://madeinusaglobal.com">
  228.                   <i class="fa fa-globe"></i> www.madeinusaglobal.com
  229.                   </a>
  230.                </li>
  231.                
  232.             </ul>
  233.          </div>
  234.          <div class="col-md-3 mx-auto">
  235.             <!-- Links -->
  236.             <h5 class="keep font-weight-bold text-uppercase mt-3 mb-4" style="font-weight: bold;color:white;">a</h5>
  237.             <ul class="list-unstyled" style="text-align: left; font-weight: bold;">
  238.                {# <li>
  239.                   <a href="javascript:void(0);">
  240.                   <i class="fa fa-map-marker-alt"></i> On est partout au maroc
  241.                   </a>
  242.                </li> #}
  243.                <li>
  244.                   <a href="https://www.instagram.com/madeinusaglobal">
  245.                   <i class="fab fa-instagram"></i> Instagram.com/madeinusaglobal/
  246.                   </a>
  247.                </li>
  248.                <li>
  249.                   <a href="https://www.linkedin.com/in/madeinusaglobal-solay-a085ab377/">
  250.                   <i class="fab fa-linkedin"></i> linkedin.com
  251.                   </a>
  252.                </li>
  253.                <li>
  254.                   <a href="https://www.youtube.com/@madeinusaglobal">
  255.                   <i class="fab fa-youtube"></i>Youtube.com/@madeinusaglobal
  256.                   </a>
  257.                </li>
  258.             </ul>
  259.          </div>
  260.          <!-- Grid column -->
  261.       </div>
  262.       <br><br>
  263.       <!-- Grid row -->
  264.       {# <div class="small-text text-secondary">
  265.          <a class="text-secondary" href="#">A propos</a> ●
  266.          <a class="text-secondary" href="#">Mentions légales</a> ●
  267.          <a class="text-secondary" href="#">Promouvoir chez nous</a> ●
  268.          <div class="dropdown">
  269.             <span class="text-secondary" onclick="myFunction()">Langue
  270.             <i class="fa fa-chevron-down" aria-hidden="true"></i>
  271.             </span>
  272.             <div id="myDropdown" class="dropdown-content">
  273.                <a class="item text-secondary" href="/change-locale/en">
  274.                <img src="/img/en.png" alt="en"> English
  275.                </a>
  276.                <a class="item text-secondary" href="/change-locale/ar">
  277.                <img src="/img/ar.png" alt="ar"> العربية
  278.                </a>
  279.             </div>
  280.          </div>
  281.       </div> #}
  282.    </div>
  283.    <!-- Footer Links -->
  284.    <hr>
  285.    <!-- Copyright -->
  286.    {# <div class="footer-copyright text-center py-3">
  287.       Made with
  288.       <span style="color:red;">❤</span> by
  289.       <a href="https://hicham.tech/" target="_blank">Hicham.tech</a>
  290.    </div> #}
  291.    <!-- Copyright -->
  292. </footer>
  293.         
  294.         <script>
  295. function myFunction() {
  296.   var x = document.getElementById("myTopnav");
  297.   if (x.className === "topnav") {
  298.     x.className += " responsive";
  299.   } else {
  300.     x.className = "topnav";
  301.   }
  302. }
  303. </script>
  304.         <script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;962511c409ab11bd&quot;,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfEdge&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;version&quot;:&quot;2025.7.0&quot;,&quot;token&quot;:&quot;819a3f0a07034fb290d6a722dd19f377&quot;}" crossorigin="anonymous"></script>
  305.     </body>
  306. </html>