Spaces:
Configuration error
Configuration error
File size: 2,473 Bytes
7bbd534 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
'use client';
/*eslint-disable*/
import {
Flex,
List,
ListItem,
Text,
useColorModeValue,
} from '@chakra-ui/react';
import Link from '@/components/link/Link';
export default function Footer() {
const textColor = useColorModeValue('gray.500', 'white');
return (
<Flex
zIndex="3"
flexDirection={{
base: 'column',
xl: 'row',
}}
alignItems="center"
justifyContent="space-between"
px={{ base: '30px', md: '50px' }}
pb="30px"
>
<Text
color={textColor}
fontSize={{ base: 'xs', md: 'sm' }}
textAlign={{
base: 'center',
xl: 'start',
}}
fontWeight="500"
mb={{ base: '10px', xl: '0px' }}
>
{' '}
© {new Date().getFullYear()}
<Text as="span" fontWeight="500" ms="4px">
Horizon UI AI Template. All Rights Reserved.
</Text>
</Text>
<List display="flex">
<ListItem
me={{
base: '10px',
md: '44px',
}}
>
<Link
fontWeight="500"
fontSize={{ base: 'xs', md: 'sm' }}
color={textColor}
href="https://horizon-ui.com/pro"
>
Homepage
</Link>
</ListItem>
<ListItem
me={{
base: '10px',
md: '44px',
}}
>
<Link
fontWeight="500"
fontSize={{ base: 'xs', md: 'sm' }}
color={textColor}
href="https://horizon-ui.notion.site/End-User-License-Agreement-8fb09441ea8c4c08b60c37996195a6d5"
>
License
</Link>
</ListItem>
<ListItem
me={{
base: '10px',
md: '44px',
}}
>
<Link
fontWeight="500"
fontSize={{ base: 'xs', md: 'sm' }}
color={textColor}
href="https://horizon-ui.notion.site/Terms-Conditions-6e79229d25ed48f48a481962bc6de3ee"
>
Terms of Use
</Link>
</ListItem>
<ListItem>
<Link
fontWeight="500"
fontSize={{ base: 'xs', md: 'sm' }}
color={textColor}
href="https://horizon-ui.notion.site/Privacy-Policy-8addde50aa8e408ca5c5f5811c38f971"
>
Privacy Policy
</Link>
</ListItem>
</List>
</Flex>
);
}
|