Files
website/src/pages/contact/contact.html
2026-04-05 14:44:10 +02:00

40 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="page">
<section class="hero section">
<p class="eyebrow">Contact</p>
<h1>Lets build something polished, useful, and fast.</h1>
<p class="lede">
If you have a product idea, an open role, or an app that needs a reliable fullstack hand,
Id be happy to talk.
</p>
</section>
<section class="section">
<div class="card-grid">
@for (channel of channels; track channel.label) {
<app-card cardClass="contact-card">
<p class="label">{{ channel.label }}</p>
@if (channel.href && channel.hrefLabel) {
<div class="contact-inline">
<a [href]="channel.href">{{ channel.value }}</a>
<button class="contact-cta" type="button" (click)="gotoHref(channel.href)">{{channel.hrefLabel}}</button>
</div>
} @else if (channel.href) {
<a [href]="channel.href">{{ channel.value }}</a>
} @else {
<p class="value">{{ channel.value }}</p>
}
</app-card>
}
</div>
</section>
<section class="section note">
<app-card>
<h2>Preferred first step</h2>
<p>
Send a short message with your goals, timeline, and the stack youre using.
</p>
</app-card>
</section>
</div>