-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHeader.tsx
72 lines (65 loc) · 1.82 KB
/
Header.tsx
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
// @ts-nocheck
import { Link, Box, Button, Icon, Text, useTheme } from '@interchain-ui/react';
import { dependencies } from '@/config';
const stacks = ['Interchain Kit', 'Next.js'];
const interchainjs = dependencies[0];
export function Header() {
const { theme, setTheme } = useTheme();
const toggleColorMode = () => {
setTheme(theme === 'light' ? 'dark' : 'light');
};
return (
<>
<Box display="flex" justifyContent="end" mb="$8">
<Button
intent="secondary"
size="sm"
attributes={{
paddingX: 0,
}}
onClick={toggleColorMode}
>
<Icon name={theme === 'light' ? 'moonLine' : 'sunLine'} />
</Button>
</Box>
<Box textAlign="center">
<Text
as="h1"
fontWeight="$extrabold"
fontSize={{ mobile: '$3xl', tablet: '$4xl', desktop: '$10xl' }}
attributes={{
marginBottom: '$6',
}}
>
Create Interchain App
</Text>
<Text as="h1" fontWeight="$bold">
<Text
as="span"
fontSize={{ mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' }}
>
Welcome to
</Text>
<Text
as="span"
fontSize={{ mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' }}
color={theme === 'light' ? '$primary500' : '$primary200'}
>
{stacks.join(' + ')}
{' + '}
<Link
href={interchainjs.name}
target="_blank"
rel="noreferrer"
attributes={{
fontSize: { mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' },
}}
>
{interchainjs.name}
</Link>
</Text>
</Text>
</Box>
</>
);
}