Skip to content

Commit

Permalink
Update presentation fonts, images
Browse files Browse the repository at this point in the history
  • Loading branch information
maximvl committed Dec 15, 2024
1 parent 9f0e5bf commit a685102
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
4 changes: 4 additions & 0 deletions src/assets/icons/medal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 23 additions & 2 deletions src/pages/presentation/Opening.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
import { Box } from '@mui/material'
import StarImage from 'assets/big_star.svg?react'

export default function Opening() {
return (
<Box fontSize="64px" marginTop={'200px'} fontWeight={700}>
Итоги ивента АУКУС
<Box paddingTop={'250px'} position="relative">
<Box position="absolute" top="-50px" left="-30px" zIndex={0}>
<StarImage />
</Box>
<Box
fontWeight={700}
fontSize="64px"
fontFamily="MursGothicMassive"
zIndex="10"
position="relative"
>
Итоги ивента АУКУС
</Box>
<Box
fontSize="24px"
fontFamily="MursGothicWide"
textAlign="center"
position="relative"
zIndex="10"
>
2024
</Box>
</Box>
)
}
10 changes: 7 additions & 3 deletions src/pages/presentation/PresentationPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PagesList: PageType[] = [
]

export default function PresentationPage() {
const [pageIdx, setPageIdx] = useState<number>(PagesList.length - 1)
const [pageIdx, setPageIdx] = useState<number>(0)

const handleBack = () => {
if (pageIdx > 0) {
Expand Down Expand Up @@ -91,8 +91,12 @@ export default function PresentationPage() {
return (
<Box display="flex" justifyContent="center" width="100%">
<Box width="100%">
<Box position="fixed" padding="40px" width="100%">
<Box display="flex" justifyContent="space-between">
<Box position="fixed" padding="40px" width="100%" zIndex="10">
<Box
display="flex"
justifyContent="space-between"
position="relative"
>
{showBack ? (
<Button
onClick={handleBack}
Expand Down

0 comments on commit a685102

Please sign in to comment.