-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (167 loc) · 8.15 KB
/
Copy pathindex.html
File metadata and controls
178 lines (167 loc) · 8.15 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RAD Programmer — developer tooling for the Delphi ecosystem</title>
<meta name="description" content="RAD Programmer builds developer tooling for the Delphi ecosystem, starting with radFormatter: a non-destructive, CST-aware Delphi source code formatter.">
<link rel="canonical" href="https://radprogrammer.com/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="RAD Programmer">
<meta property="og:title" content="RAD Programmer — developer tooling for the Delphi ecosystem">
<meta property="og:description" content="RAD Programmer builds developer tooling for the Delphi ecosystem, starting with radFormatter: a non-destructive, CST-aware Delphi source code formatter.">
<meta property="og:url" content="https://radprogrammer.com/">
<meta property="og:image" content="https://radprogrammer.com/assets/og-radprogrammer.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" type="image/svg+xml" href="assets/radprogrammer-logo.svg">
<link rel="stylesheet" href="assets/site.css">
<style>
/* hub header wordmark */
.brandmark{display:flex;align-items:center;gap:12px;text-decoration:none}
.brandmark img{height:40px;width:auto;background:#fff;border-radius:9px;padding:3px}
.brandmark .word{font-family:var(--display);font-weight:800;font-size:1.15rem;letter-spacing:-.01em;color:#fff}
.brandmark .word b{color:var(--rad-red);font-weight:800}
/* hero — light, mascot-led (inverse of the product pages) */
.hub-hero{background:var(--paper);border-bottom:1px solid var(--line);padding:72px 0}
.hub-hero .cols{display:grid;grid-template-columns:1.2fr .8fr;gap:48px;align-items:center}
.hub-hero h1{font-size:clamp(2rem,4.5vw,3rem);letter-spacing:-.02em}
.hub-hero h1 b{color:var(--rad-red);font-weight:800}
.hub-hero .sub{font-size:1.15rem;color:var(--steel);max-width:30em}
.hub-hero .actions{display:flex;gap:14px;margin-top:26px;flex-wrap:wrap}
.btn.dark{background:var(--ink);color:#fff}
.btn.dark:hover{background:#101820}
.btn.outline{border:2px solid var(--line);color:var(--ink)}
.btn.outline:hover{border-color:var(--steel)}
.hub-hero .mascot{justify-self:center}
.hub-hero .mascot img{max-height:320px;width:auto}
/* featured product band — dark, hands off to the product identity */
.featured{background:linear-gradient(180deg,var(--ink) 0%,#25323d 100%);color:var(--mist);padding:64px 0}
.featured .card{display:grid;grid-template-columns:auto 1fr auto;gap:32px;align-items:center;background:#162028;border:1px solid var(--slate);border-radius:16px;padding:34px 38px}
.featured .tile{width:96px;height:96px}
.featured h2{color:#fff;margin:0 0 .2em;font-size:1.6rem}
.featured h2 b{color:var(--rad-red)}
.featured p{margin:0;color:#AEC0CD;max-width:38em}
.featured .go{display:flex;flex-direction:column;gap:10px}
.featured .meta{font-family:var(--mono);font-size:.78rem;color:#8FA3B1;margin-top:10px}
.featured .meta span{background:#22303B;border-radius:5px;padding:.15em .55em;margin-right:6px;display:inline-block;margin-bottom:6px}
/* family strip */
.family{padding:64px 0}
.family .tiles{display:flex;gap:18px;margin-top:26px;align-items:center;flex-wrap:wrap}
.family .tiles a{display:block;line-height:0;border-radius:16px;transition:transform .12s ease}
.family .tiles a:hover{transform:translateY(-3px)}
.family .tiles img{width:72px;height:72px;border-radius:16px}
.family .tiles .ghost{width:72px;height:72px;border-radius:16px;border:2px dashed var(--line)}
.family .lede{max-width:44em;color:var(--steel)}
@media (max-width:860px){
.hub-hero .cols{grid-template-columns:1fr}
.hub-hero .mascot{order:-1}
.hub-hero .mascot img{max-height:200px}
.featured .card{grid-template-columns:1fr;text-align:center;justify-items:center}
}
</style>
</head>
<body>
<header class="site">
<div class="wrap nav">
<a class="brandmark" href="index.html" aria-label="RAD Programmer home">
<img src="assets/radprogrammer-logo.svg" alt="">
<span class="word"><b>RAD</b> Programmer</span>
</a>
<nav aria-label="Main">
<a href="radFormatter/index.html">radFormatter</a>
<a href="about.html">About</a>
<a href="https://github.com/radprogrammer">GitHub</a>
<a class="cta" href="radFormatter/buy.html">Buy</a>
</nav>
</div>
</header>
<!-- ================= HERO ================= -->
<div class="hub-hero">
<div class="wrap cols">
<div>
<h1><b>Rad</b> tooling for<br>Delphi developers.</h1>
<p class="sub">Building the next generation of developer tools for the RAD Studio ecosystem - from formatting and code analysis to exploration and automation.</p>
<div class="actions">
<a class="btn primary" href="radFormatter/index.html">Explore radFormatter</a>
<a class="btn outline" href="https://github.com/radprogrammer">GitHub</a>
</div>
</div>
<div class="mascot">
<img src="assets/radprogrammer-logo.svg" alt="The RAD Programmer mascot at a laptop">
</div>
</div>
</div>
<!-- ================= FEATURED PRODUCT ================= -->
<section class="featured" id="tools">
<div class="wrap">
<div class="card">
<img class="tile" src="radFormatter/assets/radformatter-icon.svg" alt="">
<div>
<h2><b>rad</b>Formatter</h2>
<p>A non-destructive Delphi source code formatter. It parses your source
into a full syntax tree, formats from real structure, and validates that
nothing beyond whitespace and casing ever changes — fully offline,
with your source never leaving your machine.</p>
<p class="meta"><span>IDE plugin</span><span>CLI</span><span>CST-aware</span><span>57 options</span><span>CI-ready</span><span>offline</span></p>
</div>
<div class="go">
<a class="btn primary" href="radFormatter/index.html">Learn more</a>
<a class="btn ghost" href="radFormatter/docs/radFormatter-cli.html">Docs</a>
</div>
</div>
</div>
</section>
<!-- ================= FAMILY ================= -->
<section class="family">
<div class="wrap">
<h2><span class="stair" aria-hidden="true"><i></i><i></i><i></i></span>One family, one standard</h2>
<p class="lede">Every RAD Programmer tool is built to the same engineering
bar: validated output, predictable behavior, no surprises in your source
tree — and nothing ever phoned home. radFormatter is the first; more
tools for code analysis, exploration, and automation are in development.</p>
<div class="tiles">
<a href="radFormatter/index.html" aria-label="radFormatter"><img src="radFormatter/assets/radformatter-icon.svg" alt="radFormatter"></a>
<div class="ghost" aria-hidden="true"></div>
<div class="ghost" aria-hidden="true"></div>
</div>
</div>
</section>
<!-- ================= FOOTER ================= -->
<footer class="site">
<div class="wrap cols">
<div>
<img class="mark" src="assets/radprogrammer-logo.svg" alt="RAD Programmer">
<p><strong>RAD Programmer</strong> — developer tooling for the
Delphi ecosystem.</p>
</div>
<div>
<h3>radFormatter</h3>
<ul>
<li><a href="radFormatter/index.html">Product</a></li>
<li><a href="radFormatter/docs/radFormatter-cli.html">Documentation</a></li>
<li><a href="radFormatter/buy.html">Buy</a></li>
</ul>
</div>
<div>
<h3>Project</h3>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/radprogrammer">GitHub</a></li>
<li><a href="https://github.com/radprogrammer/radformatter/issues">Support</a></li>
<li><a href="legal/privacy.html">Privacy</a></li>
<li><a href="legal/terms.html">Terms</a></li>
</ul>
</div>
</div>
<div class="wrap fine">
© 2026 Ideas Awakened, Inc.
Delphi and RAD Studio are trademarks of Embarcadero Technologies, Inc.;
RAD Programmer is not affiliated with Embarcadero.
· <a href="legal/privacy.html">Privacy</a>
· <a href="legal/terms.html">Terms</a>
</div>
</footer>
</body>
</html>