-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
136 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
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.
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
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 |
---|---|---|
@@ -0,0 +1,93 @@ | ||
--- | ||
import anthonyFu from "~/assets/avatars/anthony-fu.jpg"; | ||
import jakeBailey from "~/assets/avatars/jake-bailey.jpg"; | ||
import shelleyVohr from "~/assets/avatars/shelley-vohr.jpg"; | ||
import tjDevries from "~/assets/avatars/tj-devries.jpg"; | ||
import Bios from "~/components/Bios.astro"; | ||
import Heading from "~/components/Heading.astro"; | ||
import Button from "./Button.astro"; | ||
import { links } from "~/data/links"; | ||
import BodyText from "./BodyText.astro"; | ||
import ContentArea from "./ContentArea.astro"; | ||
const launchSpeakers = [ | ||
{ | ||
links: { | ||
bluesky: "https://bsky.app/profile/antfu.me", | ||
github: "https://github.com/antfu", | ||
website: "https://antfu.me", | ||
}, | ||
name: "Anthony Fu", | ||
photo: anthonyFu, | ||
}, | ||
{ | ||
links: { | ||
bluesky: "https://bsky.app/profile/jakebailey.dev", | ||
github: "https://github.com/jakebailey", | ||
linkedin: "https://www.linkedin.com/in/jakebbailey", | ||
mastodon: "https://fosstodon.org/@jakebailey", | ||
website: "https://jakebailey.dev", | ||
}, | ||
name: "Jake Bailey", | ||
photo: jakeBailey, | ||
}, | ||
{ | ||
links: { | ||
github: "https://github.com/codebytere", | ||
website: "https://codebyte.re", | ||
}, | ||
name: "Shelley Vohr", | ||
photo: shelleyVohr, | ||
}, | ||
{ | ||
links: { | ||
github: "https://github.com/tjdevries", | ||
twitch: "https://www.twitch.tv/teej_dv", | ||
youtube: "https://www.youtube.com/@teej_dv", | ||
}, | ||
name: "TJ Devries", | ||
photo: tjDevries, | ||
}, | ||
]; | ||
--- | ||
|
||
<ContentArea class="launch-speakers"> | ||
<Heading level="h2">Launch Speakers</Heading> | ||
|
||
<BodyText class="launch-speakers-description"> | ||
Hear from practitioners of excellent web dev tooling: the people who bring | ||
you the squigglies you know and love. | ||
</BodyText> | ||
|
||
<Bios bios={launchSpeakers} size="large" /> | ||
|
||
<Button | ||
as="a" | ||
href={links.cfp} | ||
size="large" | ||
target="_blank" | ||
variant="emphasized" | ||
> | ||
Apply to be a speaker! CFP now open! | ||
</Button> | ||
</ContentArea> | ||
|
||
<style> | ||
.launch-speakers { | ||
align-items: center; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2rem; | ||
} | ||
|
||
.launch-speakers-description { | ||
max-width: 33rem; | ||
} | ||
|
||
h2 { | ||
font-family: var(--fontFamilyHeading); | ||
font-size: var(--fontSizeLarger); | ||
margin-top: 3.5rem; | ||
text-align: center; | ||
} | ||
</style> |
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