smoke-index/index.html
2026-07-18 08:10:38 +00:00

168 lines
5.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arthur Ibay | Precision Irrigation & Hydroponics</title>
<style>
:root {
--bg: #1a1a1a;
--text: #e0e0e0;
--accent: #00ff88;
--secondary: #333;
--font-main: 'Helvetica Neue', sans-serif;
}
* { box-sizing: border-box; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font-main);
line-height: 1.6;
margin: 0;
padding: 20px;
max-width: 1000px;
margin: 0 auto;
}
header {
text-align: center;
padding: 40px 0;
border-bottom: 2px solid var(--accent);
margin-bottom: 40px;
}
h1 {
color: var(--accent);
font-size: 3em;
margin: 0;
letter-spacing: -1px;
}
h2 {
color: var(--accent);
font-size: 2em;
margin-top: 30px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 40px 0;
}
.card {
background: var(--secondary);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
transition: transform 0.3s ease;
border: 1px solid transparent;
}
.card:hover {
transform: translateY(-5px);
border-color: var(--accent);
}
.card h3 {
color: var(--accent);
margin-top: 0;
}
.card p {
margin-bottom: 15px;
opacity: 0.9;
}
.card a {
color: var(--accent);
text-decoration: none;
font-weight: bold;
}
.card a:hover {
text-decoration: underline;
}
footer {
margin-top: 50px;
text-align: center;
font-size: 0.9em;
opacity: 0.7;
border-top: 1px solid var(--accent);
padding-top: 20px;
}
.quote {
font-style: italic;
border-left: 4px solid var(--accent);
padding-left: 15px;
margin: 30px 0;
background: #222;
padding: 20px;
border-radius: 8px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin: 30px 0;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Arthur Ibay</h1>
<p>Agribusiness Strategist | Precision Irrigation Designer | Homebrewer</p>
<p class="quote">"Efficiency is not a constraint. It is the canvas."</p>
</header>
<section>
<h2>What I Do</h2>
<p>I design precision irrigation networks that merge sustainability with visual appeal. From hydroponic farms to rooftop gardens, I use data, code, and a deep love for the outdoors to grow food in the most unlikely places.</p>
<p>When I'm not in the greenhouse, I'm brewing beer, playing guitar, or building something new in my workshop.</p>
</section>
<section>
<h2>My Projects</h2>
<div class="grid">
<div class="card">
<h3>The First NFT</h3>
<p>My first hydroponic system, built in a shipping container in 2014. How I turned mistakes into a thriving micro-farm.</p>
<a href="first-nft.html">See the story →</a>
</div>
<div class="card">
<h3>Wasatch Assay</h3>
<p>Soil telemetry and thermal decay models for the Great Basin.</p>
<a href="wasatch-assay.html">View the assay →</a>
</div>
<div class="card">
<h3>Garden Ledger</h3>
<p>A living record of yield per liter. Data-driven cultivation.</p>
<a href="garden-ledger.html">Open the ledger →</a>
</div>
<div class="card">
<h3>ET Matrix</h3>
<p>The Evapotranspiration Calculator. Predict water loss for any crop in any climate.</p>
<a href="et-matrix.html">Launch the engine →</a>
</div>
<div class="card">
<h3>Irrigation Duty Cycle Controller</h3>
<p><strong>LATEST:</strong> Compute optimal pump runtime from ET₀, Kc, and soil deficit. Grounded in FAO-56.</p>
<a href="irrigation-controller.html">Initialize controller →</a>
</div>
</div>
</section>
<section>
<h2>The Gallery</h2>
<div class="gallery">
<img src="https://images.pexels.com/photos/37113938/pexels-photo-37113938.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Hydroponic lettuce">
<img src="https://images-assets.nasa.gov/image/jsc2019e041774/jsc2019e041774~medium.jpg" alt="Tomato plant">
<img src="https://pixabay.com/get/g1319e956cd7cff6f039e9fe489f47de88356e564d30aab7c79e2cfb8660719d427db727a8d5bcee9ad0dc011e6954f4d2cb8d91c88ecac0d107a1520b07dcad7_1280.jpg" alt="Brewing setup">
<img src="https://images.pexels.com/photos/37861014/pexels-photo-37861014.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Guitar in the workshop">
</div>
</section>
<footer>
<p>© 2026 Arthur Ibay | Salt Lake City</p>
</footer>
</body>
</html>