Contact page
This commit is contained in:
@@ -10,4 +10,8 @@ defmodule FirehoseWeb.PageController do
|
||||
|
||||
render(conn, :home, recent_posts: recent_posts)
|
||||
end
|
||||
|
||||
def contact(conn, _params) do
|
||||
render(conn, :contact)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
<div class="space-y-12">
|
||||
<section class="space-y-6">
|
||||
<h1 class="text-4xl sm:text-5xl font-display font-semibold leading-tight tracking-tight text-balance">
|
||||
Contact
|
||||
</h1>
|
||||
<div class="space-y-4 text-lg leading-relaxed text-base-content/80">
|
||||
<p>
|
||||
Got a question, idea, or just want to say hello? Reach out below.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="space-y-6">
|
||||
<h2 class="text-2xl font-display font-semibold">Get in touch</h2>
|
||||
<div class="space-y-4">
|
||||
<div class="flex items-center gap-3">
|
||||
<span class="text-lg">📱</span>
|
||||
<a
|
||||
href="tel:+31612345678"
|
||||
class="text-lg text-primary hover:underline"
|
||||
>
|
||||
+44 7 438 651 672
|
||||
</a>
|
||||
</div>
|
||||
<div class="flex items-center gap-3">
|
||||
<span class="text-lg">🔗</span>
|
||||
<a
|
||||
href="https://www.linkedin.com/in/willemvandenende"
|
||||
class="text-lg text-primary hover:underline"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
LinkedIn
|
||||
</a>
|
||||
</div>
|
||||
<div class="flex items-center gap-3">
|
||||
<span class="text-lg">🌐</span>
|
||||
<a
|
||||
href="https://qwan.eu/contact"
|
||||
class="text-lg text-primary hover:underline"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
QWAN contact page
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="space-y-6">
|
||||
<h2 class="text-2xl font-display font-semibold">QWAN</h2>
|
||||
<div class="space-y-4 text-lg leading-relaxed text-base-content/80">
|
||||
<p>
|
||||
I'm a partner at <a href="https://qwan.eu" class="text-primary hover:underline" target="_blank" rel="noopener">QWAN</a>,
|
||||
where we build software based on user needs, and help others do the same, and learn together. If you're looking for collaboration, have a product you want to build, a service that needs improvement,
|
||||
or just want to nerd out about agentic systems, feel free to reach out.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
Reference in New Issue
Block a user