|
|
|
@ -9,6 +9,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
|
import { faEnvelope } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
import { faTwitter } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faDiscord } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faPhoneSlash } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
|
|
export default function Contact() {
|
|
|
|
|
return (
|
|
|
|
@ -28,17 +29,13 @@ export default function Contact() {
|
|
|
|
|
}
|
|
|
|
|
`}</style>
|
|
|
|
|
|
|
|
|
|
<h2>{"📬 Contact us"}</h2>
|
|
|
|
|
<section>
|
|
|
|
|
<div style={{display: "flex", flexWrap: "wrap", gap: "var(--padding-sm)", justifyContent: "flex-start", flexDirection: "column"}}>
|
|
|
|
|
<StyledButton href="mailto:contact@dubbelnull.com"><FontAwesomeIcon icon={faEnvelope}></FontAwesomeIcon> Shoot us an email</StyledButton>
|
|
|
|
|
<StyledButton href="https://discord.gg/976Xskh8Dd" rel="noreferrer" target="_blank"><FontAwesomeIcon icon={faDiscord}></FontAwesomeIcon> Message us on our Discord server</StyledButton>
|
|
|
|
|
<StyledButton href="https://discord.gg/976Xskh8Dd" rel="noreferrer" target="_blank"><FontAwesomeIcon icon={faTwitter}></FontAwesomeIcon> Send a DM to our Twitter account</StyledButton>
|
|
|
|
|
</div>
|
|
|
|
|
<p>
|
|
|
|
|
{"We typically respond within a few hours."}<br/><br/>
|
|
|
|
|
{"📵 We don't have a public phone number for contact."}<br/>
|
|
|
|
|
</p>
|
|
|
|
|
<section style={{display: "flex", flexWrap: "wrap", gap: "var(--padding-sm)", justifyContent: "flex-start", flexDirection: "column", alignItems: "stretch"}}>
|
|
|
|
|
<h2>{"📬 Contact us"}</h2>
|
|
|
|
|
<StyledButton style={{backgroundColor: "var(--theme-color-500)"}} href="mailto:contact@dubbelnull.com"><FontAwesomeIcon icon={faEnvelope}></FontAwesomeIcon> Shoot us an email</StyledButton>
|
|
|
|
|
<StyledButton style={{backgroundColor: "var(--theme-color-500)"}} href="https://discord.gg/976Xskh8Dd" rel="noreferrer" target="_blank"><FontAwesomeIcon icon={faDiscord}></FontAwesomeIcon> Message us on our Discord server</StyledButton>
|
|
|
|
|
<StyledButton style={{backgroundColor: "var(--theme-color-500)"}} href="https://discord.gg/976Xskh8Dd" rel="noreferrer" target="_blank"><FontAwesomeIcon icon={faTwitter}></FontAwesomeIcon> Send a DM to our Twitter account</StyledButton>
|
|
|
|
|
<StyledButton style={{backgroundColor: "var(--danger)"}}><FontAwesomeIcon icon={faPhoneSlash}></FontAwesomeIcon> We have no public phone number</StyledButton>
|
|
|
|
|
<p>{"We typically respond within a few hours during business hours."}</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|