-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: completed contact page and updated chat sockets
- Loading branch information
Showing
10 changed files
with
84 additions
and
192 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
File renamed without changes.
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
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
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
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
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
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 |
---|---|---|
@@ -1,107 +1,41 @@ | ||
<div class="container mx-auto pt-16"> | ||
<div class="lg:flex"> | ||
<div | ||
class="xl:w-2/5 lg:w-2/5 bg-primary py-16 xl:rounded-bl rounded-tl rounded-tr xl:rounded-tr-none"> | ||
<div class="xl:w-5/6 xl:px-0 px-8 mx-auto"> | ||
<h1 class="xl:text-4xl text-3xl pb-4 text-white font-bold">Get in touch</h1> | ||
<p class="text-xl text-white pb-8 leading-relaxed font-normal lg:pr-4"> | ||
Got a question about us? Are you interested in partnering with us? Have some suggestions | ||
or just want to say Hi? Just contact us. We are here to asset you. | ||
</p> | ||
<div class="flex items-center"> | ||
<div aria-label="email icon" role="img"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke-width="1.5" | ||
stroke="white" | ||
class="w-6 h-6"> | ||
<path | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75" /> | ||
</svg> | ||
</div> | ||
<p class="pl-4 text-white text-base">support@codecrow.io</p> | ||
</div> | ||
<p class="text-lg text-white pt-10 tracking-wide"> | ||
16192 Coastal Highway | ||
<br /> | ||
Lewes, DE 19958 United States | ||
</p> | ||
<div class=" pt-16"> | ||
<a | ||
href="/careers" | ||
class="text-white font-bold tracking-wide underline focus:outline-none focus:ring-2 focus:ring-white "> | ||
View Job Openings</a> | ||
</div> | ||
</div> | ||
<script lang="ts"> | ||
import IconEmail from '$lib/assets/icons/contact/IconEmail.svg' | ||
import IconSocialDiscordInverse from '$lib/assets/icons/contact/IconSocialDiscordInverse.svg' | ||
</script> | ||
|
||
<div class="m-10 lg:w-2/5 bg-primary p-16 rounded-md"> | ||
<h1 class="text-4xl pb-4 text-white font-bold">Get in touch</h1> | ||
<p class="text-xl text-white pb-8 leading-relaxed font-normal pr-4"> | ||
Got a question about us? Are you interested in partnering with us? Have some suggestions or just | ||
want to say hi? Just contact us. We are here to asset you. | ||
</p> | ||
<div class="flex items-center"> | ||
<div aria-label="email icon" role="img"> | ||
<img class="w-7" src={IconEmail} alt="" /> | ||
</div> | ||
<div class="xl:w-3/5 lg:w-3/5 h-full pt-5 pb-5 xl:pr-5 xl:pl-0 rounded-tr rounded-br"> | ||
<form id="contact" class="py-4 px-8 rounded-tr rounded-br"> | ||
<h1 class="text-4xl font-extrabold mb-6">Enter Details</h1> | ||
<div class="block xl:flex w-full flex-wrap mb-6"> | ||
<div class="w-2/4 max-w-xs mb-6 xl:mb-0"> | ||
<div class="flex flex-col"> | ||
<label | ||
for="full_name" | ||
class="text-sm font-semibold leading-tight tracking-normal mb-2">Full Name</label> | ||
<input | ||
required | ||
id="full_name" | ||
name="full_name" | ||
type="text" | ||
class="input input-bordered input-primary w-64 h-10 flex" | ||
placeholder="Elizabeth Caledonia" | ||
aria-label="enter your full name input" /> | ||
</div> | ||
</div> | ||
<div class="w-2/4 max-w-xs xl:flex"> | ||
<div class="flex flex-col"> | ||
<label for="email" class=" text-sm font-semibold leading-tight tracking-normal mb-2" | ||
>Email</label> | ||
<input | ||
required | ||
id="email" | ||
name="email" | ||
type="email" | ||
class="input input-bordered input-primary w-64 h-10 flex" | ||
placeholder="example@email.com" | ||
aria-label="enter your email input" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="flex w-full flex-wrap"> | ||
<div class="w-2/4 max-w-xs"> | ||
<div class="flex flex-col"> | ||
<label for="subject" class="text-sm font-semibold leading-tight tracking-normal mb-2" | ||
>Subject</label> | ||
<input | ||
required | ||
id="subject" | ||
name="subject" | ||
type="tel" | ||
class="input input-bordered input-primary w-64 h-10 flex" | ||
placeholder="Subject" | ||
aria-label="enter a subject" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="w-full mt-6"> | ||
<div class="flex flex-col"> | ||
<label class="text-sm font-semibold mb-2" for="message">Message</label> | ||
<textarea | ||
placeholder="" | ||
name="message" | ||
class="textarea textarea-bordered textarea-primary flex mb-4 py-2 px-3" | ||
rows="8" | ||
id="message" | ||
aria-label="enter your message input" /> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</div> | ||
</form> | ||
<p class="pl-4 text-white text-base"> | ||
<a class="link" href="mailto: support@codecrow.io" target="_blank" rel="noreferrer" | ||
>support@codecrow.io</a> | ||
</p> | ||
</div> | ||
<div class="flex items-center mt-2"> | ||
<div aria-label="email icon" role="img"> | ||
<img class="w-7" src={IconSocialDiscordInverse} alt="" /> | ||
</div> | ||
<p class="pl-4 text-white text-base"> | ||
<a class="link" href="https://discord.gg/CodeCrow" target="_blank" rel="noreferrer" | ||
>Create a support ticket in our discord</a> | ||
</p> | ||
</div> | ||
<p class="text-lg text-white pt-10 tracking-wide"> | ||
16192 Coastal Highway | ||
<br /> | ||
Lewes, DE 19958 United States | ||
</p> | ||
<div class=" pt-16"> | ||
<a | ||
href="/careers" | ||
class="text-white font-bold tracking-wide underline focus:outline-none focus:ring-2 focus:ring-white "> | ||
View Job Openings</a> | ||
</div> | ||
</div> |