<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OMNICRATE LLC</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
color: #1a1a1a;
}
header {
display: flex;
justify-content: space-between;
padding: 20px 40px;
border-bottom: 1px solid #eee;
}
nav a {
margin-left: 20px;
text-decoration: none;
color: #555;
font-weight: 500;
}
.hero {
background: linear-gradient(135deg, #081d59, #0d2e8a);
color: white;
padding: 80px 40px;
}
.hero h1 {
font-size: 48px;
max-width: 700px;
}
.hero p {
max-width: 600px;
margin-top: 20px;
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 12px 20px;
background: gold;
color: black;
text-decoration: none;
border-radius: 25px;
font-weight: bold;
}
.section {
padding: 60px 40px;
max-width: 1100px;
margin: auto;
}
.grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
border: 1px solid #eee;
padding: 20px;
border-radius: 15px;
}
footer {
background: #081735;
color: white;
padding: 40px;
text-align: center;
}
</style>
</head>
<body>
<header>
<strong>OMNICRATE</strong>
<nav>
<a href="#">About</a>
<a href="#">Categories</a>
<a href="#">Services</a>
<a href="#">Compliance</a>
<a href="#">FAQ</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="hero">
<h1>Your Trusted Wholesale & Online Retail Distribution Partner</h1>
<p>OMNICRATE specializes in wholesale distribution and online retail sales within the home goods and personal care categories.</p>
<a href="#" class="btn">Start a Partnership</a>
</section>
<section class="section">
<h2>About OMNICRATE</h2>
<p>OMNICRATE is a U.S.-based company dedicated to wholesale distribution and online retail of everyday consumer products.</p>
</section>
<section class="section">
<h2>Product Categories</h2>
<div class="grid">
<div class="card">Home Goods</div>
<div class="card">Personal Care</div>
<div class="card">Kitchen</div>
<div class="card">Wellness</div>
</div>
</section>
<section class="section">
<h2>Our Services</h2>
<div class="grid">
<div class="card">Wholesale Purchasing</div>
<div class="card">Amazon FBA Logistics</div>
<div class="card">Market Analysis</div>
<div class="card">Product Management</div>
</div>
</section>
<section class="section">
<h2>Contact</h2>
<p>Email us to start a long-term partnership.</p>
</section>
<footer>
<p>© OMNICRATE LLC. All rights reserved.</p>
</footer>
</body>
</html>