@@ -9,40 +9,41 @@ import {
99 Flex ,
1010 UnorderedList ,
1111 ListItem ,
12- Link
12+ Link ,
1313} from "@chakra-ui/react" ;
14-
14+ import { Link as RouterLink } from "react-router-dom" ;
1515import { Calendar as CalendarIcon } from "phosphor-react" ;
1616
1717export const Calendar = ( ) => (
18- < Flex w = { "full" } h = "full" direction = { "column" } align = "center" >
19- < Card bg = "transparent" shadow = "xl" >
20- < CardHeader paddingBottom = "0px" paddingTop = "0px" paddingRight = "0px" >
21- < Heading size = "md" display = { "flex" } alignItems = "center" gap = { 2 } >
22- < Icon
23- rounded = "full"
24- as = { CalendarIcon }
25- bg = { useToken ( "colors" , "primary.400" ) + "22" }
26- boxSize = { 10 }
27- p = { 2 }
28- color = "primary.400"
29- />
30- Calendar < Badge > Coming soon</ Badge >
31- </ Heading >
32- </ CardHeader >
33- < CardBody >
34- Calendar is currently in development. Please check back in a few days.
35- Currently planned features:
36- < UnorderedList >
37- < ListItem > Get a bird's eye view of your timetable</ ListItem >
38- < ListItem > View your sport from Clipboard</ ListItem >
39- < ListItem > See when your Canvas assignments are due</ ListItem >
40- </ UnorderedList >
41- If you have any suggestions, < Link
42- href = "https://github.com/debater-coder/timetabl-app/issues/new?assignees=debater-coder& labels = & template = feature_request . md & title = Feature % 20 Request % 20 for % 20 Calendar "
43- color = { "primary.500" }
44- isExternal > please make a feature request</ Link > .
45- </ CardBody >
46- </ Card >
47- </ Flex >
48- ) ;
18+ < Flex w = { "full" } h = "full" direction = { "column" } align = "center" >
19+ < Card bg = "transparent" shadow = "xl" >
20+ < CardHeader paddingBottom = "0px" paddingTop = "0px" paddingRight = "0px" >
21+ < Heading size = "md" display = { "flex" } alignItems = "center" gap = { 2 } >
22+ < Icon
23+ rounded = "full"
24+ as = { CalendarIcon }
25+ bg = { useToken ( "colors" , "primary.400" ) + "22" }
26+ boxSize = { 10 }
27+ p = { 2 }
28+ color = "primary.400"
29+ />
30+ Calendar < Badge > Coming soon</ Badge >
31+ </ Heading >
32+ </ CardHeader >
33+ < CardBody >
34+ Calendar is currently in development. Please check back in a few days.
35+ Currently planned features:
36+ < UnorderedList >
37+ < ListItem > Get a bird's eye view of your timetable</ ListItem >
38+ < ListItem > View your sport from Clipboard</ ListItem >
39+ < ListItem > See when your Canvas assignments are due</ ListItem >
40+ </ UnorderedList >
41+ If you have any suggestions,{ " " }
42+ < Link as = { RouterLink } to = "../feedback" color = { "primary.500" } >
43+ please make a feature request
44+ </ Link >
45+ .
46+ </ CardBody >
47+ </ Card >
48+ </ Flex >
49+ ) ;
0 commit comments