-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add two conference photos (#99)
## Overview 💖
- Loading branch information
1 parent
81182d9
commit 41f611c
Showing
5 changed files
with
49 additions
and
6 deletions.
There are no files selected for viewing
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
import simonsTheaterLecture from "~/assets/photos/simons-theater-lecture.jpg"; | ||
import simonsTheaterLobby from "~/assets/photos/simons-theatre-lobby.jpg"; | ||
import BodyText from "./BodyText.astro"; | ||
import HeadingFlanked from "./HeadingFlanked.astro"; | ||
interface Props { | ||
class?: string; | ||
} | ||
const { class: className, ...rest } = Astro.props; | ||
--- | ||
|
||
<div class="venue-photos"> | ||
<img | ||
alt="Audience view of the Simons Theater showing a giant screen and people seated in the movie theater seats. Two people are sitting on Q&A seats in front of the screen." | ||
class="venue-photo" | ||
src={simonsTheaterLecture.src} | ||
/> | ||
<BodyText> | ||
Experience the tech conference with the most comfortable theater seats, the | ||
best viewing angle, and the most spectacular IMAX screen. | ||
<br /> | ||
Also a penguin exhibit next door. | ||
</BodyText> | ||
</div> | ||
|
||
<style> | ||
.venue-photos { | ||
align-items: center; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1rem; | ||
max-width: var(--widthBodyFull); | ||
text-align: center; | ||
width: 100%; | ||
} | ||
|
||
.venue-photo { | ||
max-width: 100%; | ||
} | ||
</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