Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FE: Adding Seneca Policy Link #492

Merged
merged 2 commits into from
Mar 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions app/routes/__index/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Flex, Text, VStack } from '@chakra-ui/react';
import { Flex, Text, VStack, Link } from '@chakra-ui/react';
import type { LoaderArgs } from '@remix-run/node';
import { json } from '@remix-run/node';

Expand All @@ -13,7 +13,7 @@ export const loader = async ({ request }: LoaderArgs) => {

export default function IndexRoute() {
return (
<VStack alignSelf="center" height="full">
<VStack alignSelf="center">
<Flex
flexDirection="column"
alignItems="center"
Expand Down Expand Up @@ -49,6 +49,13 @@ export default function IndexRoute() {
cardDescription="Certificate: Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. "
/>
</Flex>
<Flex paddingTop={{ sm: '20' }}>
<Link href="https://www.senecacollege.ca/about/policies/information-technology-acceptable-use-policy.html">
<Text fontSize={{ base: 'xs', sm: 'sm', md: 'md' }} color="brand.500">
Seneca's IT Acceptable Use Policy
</Text>
</Link>
</Flex>
</VStack>
);
}