-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
75 lines (66 loc) · 2.45 KB
/
Copy pathabout.html
File metadata and controls
75 lines (66 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About — Interliant Technologies</title>
<link rel="icon" type="image/png" href="/favicon.png">
<meta name="description" content="About Interliant Technologies — an early-stage engineering R&D company developing engineered interfaces for deterministic control of liquid behavior." />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<div class="navwrap">
<div class="brand">
<img class="logo" src="Interliant-symbol.svg" alt="Interliant symbol" />
<div class="brandtext">
<div class="name">
<span class="name-blue">Inter</span><span class="name-orange">liant</span>
<span class="name-gray"> Technologies</span>
</div>
<div class="sub">
Deterministic fluid behavior through engineered interfaces
</div>
</div>
</div>
<nav>
<a href="index.html">Home</a>
<a href="platform.html">Platform</a>
<a href="programs.html">Programs</a>
<a class="active" href="about.html">About</a>
</nav>
</div>
</header>
<main class="container">
<section class="hero">
<h1>About Interliant</h1>
<p>
Interliant Technologies is based in Raleigh, North Carolina and was founded to translate advances in <strong>interfacial physics, surface science, and multiphase fluid dynamics</strong> into practical engineering mechanisms.
</p>
<p>
The company develops engineered interfaces that control how liquids nucleate, move, shed, and recycle on solid surfaces, with an intentional focus on <strong>early-stage mechanism validation</strong> before scale-up and commercialization.
</p>
</section>
<section class="section grid two">
<div class="card">
<h2>Contact</h2>
<p><strong>Email:</strong> contact@interlianttech.com</p>
<p><strong>Location:</strong> Raleigh, NC</p>
</div>
<div class="card">
<h2>Focus</h2>
<p>
This site is intentionally concise and focused on technical scope, feasibility-stage R&D, and surface-enabled mechanism validation.
</p>
</div>
</section>
<footer class="footer">
<div>© <span id="y"></span> Interliant Technologies</div>
<div><a href="index.html">Home</a></div>
</footer>
</main>
<script>
document.getElementById("y").textContent = new Date().getFullYear();
</script>
</body>
</html>