This commit is contained in:
belle 2024-06-12 23:02:23 -04:00 committed by Max Wofford
parent 792874179f
commit f8b886ece6
3 changed files with 4 additions and 3 deletions

View file

@ -1401,13 +1401,14 @@ const Arcade = ({ stickers = [], inventory }) => {
ticketRotation="-12"
/>
</Grid>
<Text className='gaegu' variant='subtitle' sx={{ mt: '100px', display: 'block'}}>And many many more! New items added over the summer! </Text>
</Box>
<Flex
sx={{
width: ['70vw', '50vw', '60vw', '70vw'],
maxWidth: '1200px',
ml: ['10vw'],
mt: '100px',
paddingTop: '50px',
marginBottom: '-50px',
gap: ['10px', '10px', '2vw', '0vw'],

View file

@ -20,7 +20,7 @@ export async function getStaticProps(context) {
const data = allProjects.slice((currentPage - 1) * 10, currentPage * 10)
const projects = []
for (const project of data) {
projects.push(await getOnboardProject(project.name))
projects.push(await getOnboardProject(project.name || ''))
}
return {
props: {

View file

@ -17,7 +17,7 @@ export async function getStaticProps() {
const data = allProjects.slice(0, 10)
const projects = []
for (const project of data) {
projects.push(await getOnboardProject(project.name))
projects.push(await getOnboardProject(project.name || ''))
}
return {
props: {