Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 94d88d8

Browse files
committed
docs: add coming soon features
1 parent 79d780e commit 94d88d8

File tree

1 file changed

+43
-2
lines changed

1 file changed

+43
-2
lines changed

src/routes/Landing/Features.tsx

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ import {
66
useToken,
77
CardBody,
88
Icon,
9+
Badge,
910
} from "@chakra-ui/react";
10-
import { House, Barcode, Megaphone } from "phosphor-react";
11+
import { House, Barcode, Megaphone, Calendar, Check } from "phosphor-react";
1112

1213
export const Features = () => (
13-
<SimpleGrid minChildWidth="150px" spacing="40px">
14+
<SimpleGrid minChildWidth="270px" spacing="40px">
1415
<Card bg="transparent" shadow="xl">
1516
<CardHeader>
1617
<Heading size="md" display={"flex"} alignItems="center" gap={2}>
@@ -68,5 +69,45 @@ export const Features = () => (
6869
specific notices.
6970
</CardBody>
7071
</Card>
72+
<Card bg="transparent" shadow="xl">
73+
<CardHeader>
74+
<Heading size="md" display={"flex"} alignItems="center" gap={2}>
75+
<Icon
76+
rounded="full"
77+
as={Calendar}
78+
bg={useToken("colors", "primary.400") + "22"}
79+
boxSize={10}
80+
p={2}
81+
color="primary.400"
82+
/>
83+
Calendar<Badge>Coming soon</Badge>
84+
</Heading>
85+
</CardHeader>
86+
<CardBody>
87+
Get a bird&apos;s eye view of your timetable, and see what&apos;s
88+
coming. View your sport from Clipboard, see when you assignments are due
89+
from Canvas and more.
90+
</CardBody>
91+
</Card>
92+
<Card bg="transparent" shadow="xl">
93+
<CardHeader>
94+
<Heading size="md" display={"flex"} alignItems="center" gap={2}>
95+
<Icon
96+
rounded="full"
97+
as={Check}
98+
bg={useToken("colors", "primary.400") + "22"}
99+
boxSize={10}
100+
p={2}
101+
color="primary.400"
102+
/>
103+
Timetabl Tasks<Badge>Coming soon</Badge>
104+
</Heading>
105+
</CardHeader>
106+
<CardBody>
107+
Get a bird&apos;s eye view of your timetable, and see what&apos;s
108+
coming. View your sport from Clipboard, see when you assignments are due
109+
from Canvas and more.
110+
</CardBody>
111+
</Card>
71112
</SimpleGrid>
72113
);

0 commit comments

Comments
 (0)