1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
import React from 'react';
import { Container, Paper, Typography, useTheme } from '@mui/material';
const FlexBox = (props: any) => {
return (
<div
style={{
height: '100%',
width: '100%',
display: 'flex',
alignItems: 'center',
}}
>
{props.children}
</div>
);
};
function Schedule() {
const theme = useTheme();
return (
<Container
maxWidth="sm"
sx={{
display: 'flex',
justifyContent: 'center',
}}
>
<Paper
elevation={3}
sx={{
mt: 10,
px: 2,
height: '100%',
width: '100%',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
}}
>
<div
style={{
height: '100%',
width: '100%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
}}
>
<FlexBox>
<div style={{ width: '35%' }}>
<p>April 26, 2025</p>
</div>
<div style={{ width: '65%' }}>
<Typography variant="h5">Wedding Schedule</Typography>
</div>
</FlexBox>
<hr style={{ width: '100%' }} />
<FlexBox>
<div style={{ width: '35%' }}>
<p>3:00 PM</p>
</div>
<div style={{ width: '65%' }}>
<Typography variant="h6">Ceremony</Typography>
<p>
Divine Shepherd
<br />
<a
href="https://maps.app.goo.gl/dGWvmjPiVjNGBVkZ9"
style={{ color: theme.palette.primary.main }}
>
15005 Q St, Omaha, NE 68137
</a>
</p>
</div>
</FlexBox>
<hr style={{ width: '100%' }} />
<FlexBox>
<div style={{ width: '35%' }}>
<p>5:00 PM</p>
</div>
<div style={{ width: '65%' }}>
<Typography variant="h6">Reception</Typography>
<p>
A Venue on the Ridge
<br />
<a
href="https://maps.app.goo.gl/35RRqxzQdq6E4eSMA"
style={{ color: theme.palette.primary.main }}
>
20033 Elkhorn Ridge Dr, Elkhorn, NE 68022
</a>
</p>
</div>
</FlexBox>
</div>
</Paper>
</Container>
);
}
export default Schedule;
|