From 32ade97a48d6ff2cc074d36038c4cdb89fc4fbb9 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Tue, 26 Mar 2024 18:09:04 -0700 Subject: Add schedule --- index.html | 3 +- src/components/Schedule.tsx | 90 +++++++++++++++++++++++++++++++++++++++++++-- src/components/active.css | 4 +- src/main.css | 3 ++ src/main.tsx | 1 + 5 files changed, 95 insertions(+), 6 deletions(-) create mode 100644 src/main.css diff --git a/index.html b/index.html index a24cf1f..567658b 100644 --- a/index.html +++ b/index.html @@ -4,10 +4,11 @@ - Wedding + Madison and Michael's Wedding
+ diff --git a/src/components/Schedule.tsx b/src/components/Schedule.tsx index 64e4d1a..ef72769 100644 --- a/src/components/Schedule.tsx +++ b/src/components/Schedule.tsx @@ -1,8 +1,92 @@ +import { Container, Paper } from '@mui/material'; +import PlaceIcon from '@mui/icons-material/Place'; + function Schedule() { return ( - <> -

Location and attire

- + + +
+
+
+

2:00 PM

+
+
+

Ceremony

+

+ Divine Shepherd +
+ + 15005 Q St, Omaha, NE 68137 + + +

+
+
+
+
+
+

4:00 PM

+
+
+

Reception

+

+ A Venue on the Ridge +
+ + 20033 Elkhorn Ridge Dr, Elkhorn, NE 68022 + + +

+
+
+
+
+
); } diff --git a/src/components/active.css b/src/components/active.css index b3841d1..e8b5f60 100644 --- a/src/components/active.css +++ b/src/components/active.css @@ -1,7 +1,7 @@ .active { - background-color: #1976d2; + background-color: #1976d2 } .inactive { - background-color: #c4c4c4; + background-color: #c4c4c4 } diff --git a/src/main.css b/src/main.css new file mode 100644 index 0000000..13ce153 --- /dev/null +++ b/src/main.css @@ -0,0 +1,3 @@ +#body { + margin: 0 +} diff --git a/src/main.tsx b/src/main.tsx index 8aba432..8ada188 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -12,6 +12,7 @@ import Rsvp from './components/Rsvp'; import RsvpForm from './components/RsvpForm'; import Admin from './components/Admin'; import Home from './components/Home'; +import './main.css'; const router = createBrowserRouter([ { -- cgit v1.2.3