Skip to content

Commit

Permalink
Add contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
rayc2045 committed Jun 4, 2024
1 parent 37326e9 commit 39b739d
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions src/pages/about/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<section class="space-y-4">
<h2 class="text-2xl font-bold">Get in touch</h2>
<p class="font-serif text-lg">
Have any questions about our products, or would you just like to say hello?
</p>
<div>
<label for="message" class="sr-only">Message</label>
<div
class="max-w-xl overflow-hidden rounded-lg border border-gray-600 shadow-sm focus-within:border-blue-600 focus-within:ring-1 focus-within:ring-blue-600"
>
<textarea
id="message"
class="w-full p-2 resize-none align-top border-none bg-transparent focus:ring-0 sm:text-sm"
rows="4"
placeholder="Leave a message..."
></textarea>
<div class="p-3 flex items-center justify-end gap-2">
<button
type="button"
class="rounded px-3 py-1.5 text-sm text-gray-700 bg-gray-200 hover:text-gray-600"
>
Clear
</button>
<button
type="button"
class="rounded px-3 py-1.5 text-sm text-white bg-gray-600 hover:bg-gray-700"
>
Send
</button>
</div>
</div>
</div>
</section>

<section>
<h2 class="text-2xl font-bold">Follow Us</h2>
<ul class="mt-5 flex gap-4 text-lg text-gray-800">
<li>
<a
href="https://www.instagram.com/"
target="_blank"
rel="noopener noreferrer"
x-html="svg('instagram')"
></a>
</li>
<li>
<a
href="https://twitter.com/"
target="_blank"
rel="noopener noreferrer"
x-html="svg('twitter')"
></a>
</li>
<li>
<a
href="https://www.facebook.com/"
target="_blank"
rel="noopener noreferrer"
x-html="svg('facebook')"
></a>
</li>
</ul>
</section>

<section class="space-y-4">
<h2 class="text-2xl font-bold">Address</h2>
<p class="font-serif text-lg">
Havnegade 12 <br />
1234 Copenhagen <br />
Denmark
</p>
</section>

<section class="space-y-4">
<h2 class="text-2xl font-bold">Contact Info</h2>
<p class="font-serif text-lg">(+45) 555-55-555</p>
<a href="mailto:[email protected]" class="block underline">
[email protected]
</a>
</section>

0 comments on commit 39b739d

Please sign in to comment.