@@ -38,19 +38,6 @@ const useStyles = makeStyles((theme) => ({
38
38
listStyle : 'none' ,
39
39
} ,
40
40
} ,
41
- // appBar: {
42
- // borderBottom: `1px solid ${theme.palette.divider}`,
43
- // backgroundColor:"#224878"
44
- // },
45
- // toolbar: {
46
- // flexWrap: 'wrap',
47
- // },
48
- // toolbarTitle: {
49
- // flexGrow: 1,
50
- // },
51
- // link: {
52
- // margin: theme.spacing(1, 1.5),
53
- // },
54
41
heroContent : {
55
42
padding : theme . spacing ( 8 , 0 , 6 ) ,
56
43
} ,
@@ -60,7 +47,6 @@ const useStyles = makeStyles((theme) => ({
60
47
color :"#FFFFFF" ,
61
48
62
49
} ,
63
-
64
50
itemTitle : {
65
51
whiteSpace : 'pre-wrap'
66
52
} ,
@@ -112,24 +98,7 @@ const tiers = [
112
98
buttonVariant : 'outlined' ,
113
99
} ,
114
100
] ;
115
- // const footers = [
116
- // {
117
- // title: 'Company',
118
- // description: ['Team', 'History', 'Contact us', 'Locations'],
119
- // },
120
- // {
121
- // title: 'Features',
122
- // description: ['Cool stuff', 'Random feature', 'Team feature', 'Developer stuff', 'Another one'],
123
- // },
124
- // {
125
- // title: 'Resources',
126
- // description: ['Resource', 'Resource name', 'Another resource', 'Final resource'],
127
- // },
128
- // {
129
- // title: 'Legal',
130
- // description: ['Privacy policy', 'Terms of use'],
131
- // },
132
- // ];
101
+
133
102
134
103
export default function Home ( ) {
135
104
const classes = useStyles ( ) ;
@@ -189,14 +158,6 @@ export default function Home() {
189
158
190
159
/>
191
160
< CardContent >
192
- { /* <div className={classes.cardPricing}>
193
- <Typography component="h2" variant="h3" color="inherit">
194
- ${tier.price}
195
- </Typography>
196
- <Typography variant="h6" color="#FFFFFF">
197
- /mo
198
- </Typography>
199
- </div> */ }
200
161
< ul className = { classes . itemTitle } >
201
162
{ tier . description . map ( ( line ) => (
202
163
< Typography variant = "subtitle1" align = "center" key = { line } >
@@ -215,31 +176,6 @@ export default function Home() {
215
176
) ) }
216
177
</ Grid >
217
178
</ Container >
218
- { /* Footer */ }
219
- { /* <Container maxWidth="md" component="footer" className={classes.footer}>
220
- <Grid container spacing={4} justifyContent="space-evenly">
221
- {footers.map((footer) => (
222
- <Grid item xs={6} sm={3} key={footer.title}>
223
- <Typography variant="h6" color="textPrimary" gutterBottom>
224
- {footer.title}
225
- </Typography>
226
- <ul>
227
- {footer.description.map((item) => (
228
- <li key={item}>
229
- <Link href="#" variant="subtitle1" color="textSecondary">
230
- {item}
231
- </Link>
232
- </li>
233
- ))}
234
- </ul>
235
- </Grid>
236
- ))}
237
- </Grid>
238
- <Box mt={5}>
239
- <Copyright />
240
- </Box>
241
- </Container> */ }
242
- { /* End footer */ }
243
179
</ React . Fragment >
244
180
) ;
245
181
}
0 commit comments