-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.vue
39 lines (35 loc) · 1.26 KB
/
header.vue
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
<script setup lang="ts">
import { Link, Text, Box, Container, Button, Icon } from '@interchain-ui/vue';
import { dependencies } from '@/config/asset-list/features'
const stacks = ['Interchain Kit', 'Vue'];
const interchainjs = dependencies[0];
</script>
<template>
<Box display="flex" justifyContent="end" mb="$8">
<Button intent="secondary" size="sm" :attributes="{ paddingX: 0, }">
<Icon name="moonLine" />
</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="$primary500">
{{ stacks.join(' + ') }}
<!-- {{ ' + ' }}
<Link :href="interchainjs.name" target="_blank" rel="noreferrer" :attributes="{
fontSize: { mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' },
}">
{{ interchainjs.name }}
</Link> -->
</Text>
</Text>
</Box>
</template>
<style scoped></style>