forked from ShreyeshArangath/HackWesTX-Official-Repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jumbotron.tsx
117 lines (113 loc) · 2.69 KB
/
Jumbotron.tsx
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import {
Box,
Button,
Container,
Grid,
Typography,
useTheme,
} from "@mui/material";
import Image from "next/image";
import Logo from "../../assets/icons/screen.svg";
import styles from "../../styles/Home.module.css";
import Link from "next/link";
const Jumbotron = () => {
const theme = useTheme();
return (
<Grid
container
sx={{
backgroundColor: "black",
px: 1,
py: 10,
mb: 7,
}}
>
<Grid
item
xs={12}
md={6}
sx={{
justifyContent: "space-around",
display: "flex",
alignItems: "center",
py: 5,
}}
>
<Image src={Logo} alt="Cactus" height={350} />
</Grid>
<Grid
item
xs={12}
md={6}
sx={{
justifyContent: "space-around",
display: "flex",
alignItems: "center",
}}
>
<Container>
<Typography
textAlign="center"
variant="h2"
my={2}
className={styles.glitch}
fontSize={{
xs: "2rem",
sm: "2.75rem",
md: "3.5rem",
lg: "4rem",
}}
color="whitesmoke"
>
HACKWES<span className={styles.tx}>TX</span>
</Typography>
<Typography
variant="h5"
textAlign="center"
color="whitesmoke"
mt={{ md: 4 }}
className={styles.glitch}
>
September 14th - September 15th
</Typography>
<Typography
variant="h5"
textAlign="center"
mt={{ mb: 4 }}
className={styles.glitch}
>
<span className={styles.tx}>Innovation Hub, Lubbock</span>
</Typography>
<Box
sx={{
justifyContent: "space-around",
display: "flex",
}}
>
<Button
disableRipple={true}
href=""
variant="contained"
color="success"
size="large"
// onClick={() => popup('hackwestx-fall-2023-424424')}
sx={{
color: theme.palette.success.contrastText,
my: 4,
mx: "auto",
borderRadius: 10,
"&.MuiButtonBase-root:hover": {
bgcolor: "#2e7d32",
cursor: "default"
}
}}
>
<Link href={'/2024'}>Visit HackWesTX 2024 Website</Link>
</Button>
</Box>
</Container>
</Grid>
</Grid>
);
};
export default Jumbotron;