<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>">
<script type="module" crossorigin="" src="{{asset('js/1.js?v=1')}}"></script>
<script src="{{asset('js/2.js?v=1')}}" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{"rayId":"9623a44fde1a8648","serverTiming":{"name":{"cfExtPri":true,"cfEdge":true,"cfOrigin":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"version":"2025.7.0","token":"819a3f0a07034fb290d6a722dd19f377"}" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
{# <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> #}
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous" defer></script>
<script src="{{asset('js/1.js?v=1')}}"></script>
<script src="{{asset('js/2.js?v=1')}}"></script>
<script src="{{asset('js/3.js?v=1')}}"></script>
{# <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> #}
<link rel="stylesheet" href="{{asset('css/style.css?v=2')}}">
<link rel="stylesheet" href="{{asset('css/style1.css?v=2')}}">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<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">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
<script>
document.addEventListener("DOMContentLoaded", function () {
const toggleButton = document.querySelector('button[data-state]');
toggleButton.addEventListener("click", function () {
const currentState = toggleButton.getAttribute("data-state");
const newState = currentState === "open" ? "closed" : "open";
toggleButton.setAttribute("data-state", newState);
});
});
</script>
<script>
const burger = document.querySelector('button[aria-haspopup="dialog"]');
const mobileMenu = document.getElementById('mobile-menu');
burger.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
</script>
<style>
.topnav {
overflow: hidden;
background-color: white;
}
.topnav a {
font-weight: bold;
float: left;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
.topnav.responsive .menu-links {
display: block;
flex-direction: column;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="topnav flex justify-between items-center px-4" id="myTopnav">
<!-- Logo -->
<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>
<!-- Menu -->
<div class="menu-links space-x-6 hidden md:flex">
<a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
<a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
<a href="#testimonials" class="text-gray-700 hover:text-blue-800 font-medium transition">Testimonials</a>
<a href="{{ path('add_company') }}" class="text-gray-700 hover:text-blue-800 font-medium transition">Pricing</a>
</div>
<!-- Icone burger pour mobile -->
<a href="javascript:void(0);" class="icon md:hidden" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
{# <div class="topnav" id="myTopnav">
<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>
<a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
<a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
<a href="#testimonials" class="text-gray-700 hover:text-blue-800 font-medium transition">Testimonials</a>
<a href="{{ path('add_company') }}" class="text-gray-700 hover:text-blue-800 font-medium transition">Pricing</a>
{# <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 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 text-primary-foreground h-10 px-4 py-2 bg-blue-800 hover:bg-blue-900">
Get Started
</a> #}
{# <a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div> #}
{# <header class="sticky top-0 z-50 w-full transition-all duration-300 bg-transparent py-4">
<div class="container mx-auto px-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<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>
</div>
<nav class="hidden md:flex items-center space-x-6">
<a href="#about" class="text-gray-700 hover:text-blue-800 font-medium transition">About</a>
<a href="#services" class="text-gray-700 hover:text-blue-800 font-medium transition">Services</a>
<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>
<button
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 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 text-primary-foreground h-10 px-4 py-2 bg-blue-800 hover:bg-blue-900"
>
Get Started
</button>
</nav>
<div class="md:hidden">
<button
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 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 hover:bg-accent hover:text-accent-foreground h-10 w-10"
type="button"
aria-haspopup="dialog"
aria-expanded="false"
aria-controls="radix-:r3:"
data-state="closed"
>
<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">
<line x1="4" x2="20" y1="12" y2="12"></line>
<line x1="4" x2="20" y1="6" y2="6"></line>
<line x1="4" x2="20" y1="18" y2="18"></line>
</svg>
</button>
</div>
</div>
</div>
</header> #}
{# <nav class="navbar navbar-expand-lg bg-primary">
<div class="container">
<a class="navbar-brand" href="/"><img src="{{asset('img/logo.png')}}" width="220"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#service">Our Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Benefits</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{path('app_company_new')}}">register</a>
</li>
</ul>
</div>
</div>
</nav> #}
<main class="flex-grow">{% block body %}{% endblock %}</main>
<footer class="bg-white pt-4 border-top">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mx-auto">
<!-- Content -->
<div class="font-weight-bold text-uppercase mt-3 mb-4">
<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>
</div>
{# <p class="small-text" style="text-align: left;">
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> #}
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none">
<!-- Grid column -->
<div class="col-md-3 mx-auto">
<!-- Links -->
<h5 class="keep font-weight-bold text-uppercase mt-3 mb-4" style="font-weight: bold;">Contact us</h5>
<ul class="list-unstyled" style="text-align: left; font-weight: bold;">
{# <li>
<a href="javascript:void(0);">
<i class="fa fa-map-marker-alt"></i> On est partout au maroc
</a>
</li> #}
<li>
<a href="tel:+34632709911">
<i class="fa fa-phone"></i> +34 632709911</a>
</li>
<li>
<a href="mailto:contact@madeinusaglobal.com">
<i class="far fa-envelope"></i> contact@madeinusaglobal.com
</a>
</li>
<li>
<a href="https://madeinusaglobal.com">
<i class="fa fa-globe"></i> www.madeinusaglobal.com
</a>
</li>
</ul>
</div>
<div class="col-md-3 mx-auto">
<!-- Links -->
<h5 class="keep font-weight-bold text-uppercase mt-3 mb-4" style="font-weight: bold;color:white;">a</h5>
<ul class="list-unstyled" style="text-align: left; font-weight: bold;">
{# <li>
<a href="javascript:void(0);">
<i class="fa fa-map-marker-alt"></i> On est partout au maroc
</a>
</li> #}
<li>
<a href="https://www.instagram.com/madeinusaglobal">
<i class="fab fa-instagram"></i> Instagram.com/madeinusaglobal/
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/madeinusaglobal-solay-a085ab377/">
<i class="fab fa-linkedin"></i> linkedin.com
</a>
</li>
<li>
<a href="https://www.youtube.com/@madeinusaglobal">
<i class="fab fa-youtube"></i>Youtube.com/@madeinusaglobal
</a>
</li>
</ul>
</div>
<!-- Grid column -->
</div>
<br><br>
<!-- Grid row -->
{# <div class="small-text text-secondary">
<a class="text-secondary" href="#">A propos</a> ●
<a class="text-secondary" href="#">Mentions légales</a> ●
<a class="text-secondary" href="#">Promouvoir chez nous</a> ●
<div class="dropdown">
<span class="text-secondary" onclick="myFunction()">Langue
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</span>
<div id="myDropdown" class="dropdown-content">
<a class="item text-secondary" href="/change-locale/en">
<img src="/img/en.png" alt="en"> English
</a>
<a class="item text-secondary" href="/change-locale/ar">
<img src="/img/ar.png" alt="ar"> العربية
</a>
</div>
</div>
</div> #}
</div>
<!-- Footer Links -->
<hr>
<!-- Copyright -->
{# <div class="footer-copyright text-center py-3">
Made with
<span style="color:red;">❤</span> by
<a href="https://hicham.tech/" target="_blank">Hicham.tech</a>
</div> #}
<!-- Copyright -->
</footer>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{"rayId":"962511c409ab11bd","serverTiming":{"name":{"cfExtPri":true,"cfEdge":true,"cfOrigin":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"version":"2025.7.0","token":"819a3f0a07034fb290d6a722dd19f377"}" crossorigin="anonymous"></script>
</body>
</html>