diff --git a/src/assets/.DS_Store b/src/assets/.DS_Store
deleted file mode 100644
index e1cfda1..0000000
Binary files a/src/assets/.DS_Store and /dev/null differ
diff --git a/src/assets/photos/simons-theater-lecture.jpg b/src/assets/photos/simons-theater-lecture.jpg
new file mode 100644
index 0000000..e3a4d04
Binary files /dev/null and b/src/assets/photos/simons-theater-lecture.jpg differ
diff --git a/src/components/FunInfo.astro b/src/components/FunInfo.astro
index 8e96059..33d1d29 100644
--- a/src/components/FunInfo.astro
+++ b/src/components/FunInfo.astro
@@ -94,7 +94,6 @@ const sections = [
@media (min-width: 1017px) {
.secondary-info {
- margin-left: -1rem;
width: calc(100% + 2rem);
}
diff --git a/src/components/VenuePhotos.astro b/src/components/VenuePhotos.astro
new file mode 100644
index 0000000..60f9e66
--- /dev/null
+++ b/src/components/VenuePhotos.astro
@@ -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;
+---
+
+
+
![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.]({simonsTheaterLecture.src})
+
+ Experience the tech conference with the most comfortable theater seats, the
+ best viewing angle, and the most spectacular IMAX screen.
+
+ Also a penguin exhibit next door.
+
+
+
+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 05b044d..1cf6518 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,14 +1,15 @@
---
+import FunInfo from "~/components/FunInfo.astro";
+import MCs from "~/components/MCs.astro";
+import Newsletter from "~/components/Newsletter.astro";
import Partners from "~/components/Partners.astro";
-import Sponsors from "~/components/Sponsors.astro";
import PrimaryContents from "~/components/PrimaryContents.astro";
import PrimaryHero from "~/components/PrimaryHero.astro";
+import PrimaryInfo from "~/components/PrimaryInfo.astro";
import SpeakersContent from "~/components/SpeakersContent.astro";
+import Sponsors from "~/components/Sponsors.astro";
+import VenuePhotos from "~/components/VenuePhotos.astro";
import ContentLayout from "~/layouts/ContentLayout.astro";
-import MCs from "~/components/MCs.astro";
-import Newsletter from "~/components/Newsletter.astro";
-import FunInfo from "~/components/FunInfo.astro";
-import PrimaryInfo from "~/components/PrimaryInfo.astro";
---
@@ -22,6 +23,7 @@ import PrimaryInfo from "~/components/PrimaryInfo.astro";
+