-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:hello@example.com" class="block underline"> | ||
hello@example.com | ||
</a> | ||
</section> |