Skip to content

Commit

Permalink
added dummy pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jyorien committed Jan 3, 2024
1 parent 7f23be3 commit 58990e8
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions apps/web/pages/challenges/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Flex, Text } from "@chakra-ui/react"

const Challenges = () => {
return (<Flex
minH="100vh"
flexDirection="column"
justifyContent="center"
alignItems="center">
<Text>Challenges Home</Text>
</Flex>)
}

export default Challenges
13 changes: 13 additions & 0 deletions apps/web/pages/challenges/problems/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Flex, Text } from "@chakra-ui/react"

const Problems = () => {
return (<Flex
minH="100vh"
flexDirection="column"
justifyContent="center"
alignItems="center">
<Text>Problems</Text>
</Flex>)
}

export default Problems
13 changes: 13 additions & 0 deletions apps/web/pages/challenges/profile/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Flex, Text } from "@chakra-ui/react"

const Profile = () => {
return (<Flex
minH="100vh"
flexDirection="column"
justifyContent="center"
alignItems="center">
<Text>Profile</Text>
</Flex>)
}

export default Profile

0 comments on commit 58990e8

Please sign in to comment.