-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add /contact page, use instead of email (#298)
- Loading branch information
Showing
5 changed files
with
96 additions
and
23 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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ export const SITE_DESCRIPTION = | |
"Docker-based local PHP+Node.js web development environments." | ||
export const STORE_URL = "https://ddev.threadless.com" | ||
export const BLUESKY_URL = "https://bsky.app/profile/ddev.bsky.social" | ||
export const LINKEDIN_URL = "https://www.linkedin.com/company/ddev-foundation" | ||
export const GITHUB_REPO = "ddev/ddev" | ||
export const GITHUB_URL = "https://github.com/ddev/ddev" | ||
export const GITHUB_URL_WEBSITE = | ||
|
@@ -11,17 +12,18 @@ export const GITHUB_ISSUES_URL = "https://github.com/ddev/ddev/issues" | |
export const DOCUMENTATION_URL = "https://ddev.readthedocs.io/" | ||
export const DISCORD_URL = "/s/discord" | ||
export const EMAIL_URL = "mailto:support%40ddev.com" | ||
export const MEETING_URL = "https://cal.com/randyfay/30min" | ||
export const COPYRIGHT_HOLDER = "DDEV Foundation" | ||
export const MASTODON_URL = "https://fosstodon.org/@ddev" | ||
export const ORG_STREET = "848 Montclair Dr" | ||
export const ORG_CITY = "Palisade" | ||
export const ORG_STATE = "Colorado" | ||
export const ORG_STATE_ABBR = "CO" | ||
export const ORG_POSTAL_CODE = "81526" | ||
export const ORG_COUNTRY = "US" | ||
export const ORG_COUNTRY = "USA" | ||
export const ORG_NAME = "DDEV Foundation" | ||
export const ORG_EMAIL = "[email protected]" | ||
export const ORG_PHONE = "(970) 462-7450" | ||
export const ORG_PHONE = "+1 970 462-7450" | ||
export const ORG_FOUNDED = "2021-09-02" | ||
export const ORG_SAME_AS = [ | ||
"https://github.com/ddev", | ||
|
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,50 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro" | ||
import Heading from "../components/Heading.astro" | ||
import PostBody from "../components/PostBody.astro" | ||
import { | ||
ORG_NAME, | ||
ORG_STREET, | ||
ORG_CITY, | ||
ORG_STATE_ABBR, | ||
ORG_POSTAL_CODE, | ||
ORG_COUNTRY, | ||
ORG_PHONE, | ||
EMAIL_URL, | ||
MEETING_URL, | ||
} from "../const" | ||
const title = `Contact Us` | ||
--- | ||
|
||
<Layout | ||
title={title} | ||
> | ||
<main class="max-w-4xl mx-auto mb-24"> | ||
<Heading title={`Contact DDEV`} /> | ||
<div class="lg:flex"> | ||
<div class="px-6 lg:px-0 lg:w-2/3"> | ||
<PostBody> | ||
<h2>Easy Contact Info</h2> | ||
<p> | ||
We're delighted to talk with you any time! | ||
</p> | ||
|
||
<ul> | ||
<li>Email <a href={EMAIL_URL}>support</a></li> | ||
<li><a href={MEETING_URL}>Set up a meeting</a></li> | ||
</ul> | ||
|
||
<h2>Snail Mail and Phone:</h2> | ||
|
||
{ORG_NAME}<br /> | ||
{ORG_STREET}<br /> | ||
{ORG_CITY}, {ORG_STATE_ABBR} {ORG_POSTAL_CODE} {ORG_COUNTRY}<br /> | ||
{ORG_PHONE}<br /> | ||
|
||
</PostBody> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> |
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