-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.js
178 lines (168 loc) · 5.39 KB
/
footer.js
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import {
Box,
chakra,
Container,
Link,
SimpleGrid,
Stack,
Text,
VisuallyHidden,
FormLabel,
Select,
Input,
IconButton,
useColorModeValue,
useColorMode,
} from '@chakra-ui/react';
import { useRouter } from 'next/router'
import { FaGithub, FaLinkedin, FaTwitter } from 'react-icons/fa';
import { BiMailSend } from 'react-icons/bi';
import { logoblack, logowhite } from '../assets';
import Image from 'next/image';
const imageLoader = require('image-loader');
const SocialButton = ({
children,
label,
href }) => {
return (
<chakra.button
bg={useColorModeValue('blackAlpha.100', 'whiteAlpha.100')}
rounded={'full'}
w={8}
h={8}
cursor={'pointer'}
as={'a'}
href={href}
display={'inline-flex'}
alignItems={'center'}
justifyContent={'center'}
transition={'background 0.3s ease'}
_hover={{
bg: useColorModeValue('blackAlpha.200', 'whiteAlpha.200'),
}}>
<VisuallyHidden>{label}</VisuallyHidden>
{children}
</chakra.button>
);
};
const ListHeader = ({ children }) => {
return (
<Text fontWeight={'500'} fontSize={'lg'} mb={2}>
{children}
</Text>
);
};
export default function LargeWithNewsletter() {
const router = useRouter()
// const activeLocale = locales.find((locale) => locale.value === router.locale)
// const setLocale = (event) => {
// router.push(router.asPath, router.asPath, { locale: event.target.value })
// }
const { colorMode } = useColorMode();
return (
<Box
bg={useColorModeValue('gray.50', 'gray.900')}
color={useColorModeValue('gray.700', 'gray.200')}>
<Container as={Stack} maxW={'6xl'} py={10}>
<SimpleGrid
templateColumns={{ sm: '1fr 1fr', md: '2fr 1fr 1fr 2fr' }}
spacing={8}>
<Stack spacing={6}>
<Box>
{/* <Image
src={colorMode === "light" ? logowhite.src : logoblack.src}
alt='Logo'
width={200}
height={80}
loader={imageLoader}
/> */}
</Box>
<Text fontSize={'sm'}>
© 2023 DataScienceGal. All rights reserved
</Text>
<Stack direction={'row'} spacing={6}>
<SocialButton label={'Linkedin'} href={'https://www.linkedin.com/in/jiannina-pinto/'} target="_blank">
<FaLinkedin />
</SocialButton>
<SocialButton label={'Github'} href={'https://github.com/jianninapinto'} target="_blank">
<FaGithub />
</SocialButton>
</Stack>
</Stack>
<Stack></Stack>
<Stack></Stack>
<Stack align={'flex-start'}>
<ListHeader>Quick Links</ListHeader>
<Link href={'/'}>About</Link>
<Link href={'project'}>Projects</Link>
<Link href={'contact'}>Hire Me</Link>
</Stack>
{/* <Stack align={'flex-start'}>
<ListHeader>Top Skills</ListHeader>
<Link href={'#'}>Data Visualization</Link>
<Link href={'#'}>Data Wrangling</Link>
<Link href={'#'}>Marketing Analyics</Link>
<Link href={'#'}>Data Cleaning</Link>
<Link href={'#'}>Consulting</Link>
</Stack>
<Stack align={'flex-start'}>
<ListHeader>Stay up to date</ListHeader>
<Stack direction={'row'}>
<Input
placeholder={'Your email address'}
bg={useColorModeValue('blackAlpha.100', 'whiteAlpha.100')}
border={0}
_focus={{
bg: 'whiteAlpha.300',
}}
/>
<IconButton
bg={useColorModeValue('palette.brown', 'palette.brown')}
color={useColorModeValue('white', 'palette.brown')}
_hover={{
bg: 'palette.black',
}}
aria-label="Subscribe"
icon={<BiMailSend />}
/>
</Stack> */}
{/* <Box mt={{ base: 12, xl: 0 }}>
<ListHeader>Language</ListHeader>
<Box as="form" mt={4} maxW={{ sm: 'xs' }}>
<Box as="fieldset" w="full">
<VisuallyHidden as={FormLabel} htmlFor="language">
Language
</VisuallyHidden>
<Box position="relative">
<Select
id="language"
name="language"
color="white"
bg="palette.black"
borderColor="transparent"
fontSize={{ sm: 'sm' }}
// value={activeLocale.value}
onChange={setLocale}
>
{locales.map((locale) => (
<Box
as="option"
bg="#374151!important"
color="white"
key={locale.value}
value={locale.value}
>
{locale.label}
</Box>
))}
</Select>
</Box>
</Box>
</Box>
</Box> */}
{/* </Stack> */}
</SimpleGrid>
</Container>
</Box>
);
}