Skip to content

Commit c64b9a6

Browse files
committed
chore: update texts
1 parent 0ee5a3c commit c64b9a6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + Vue + TS</title>
7+
<title>Twitch tokens generator</title>
88
</head>
99
<body>
1010
<div id="app"></div>

src/components/Header.vue

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { useColorMode } from '@vueuse/core'
3-
import {Sun,Moon} from 'lucide-vue-next'
3+
import {Sun,Moon, SeparatorVertical} from 'lucide-vue-next'
44
55
import { Button } from '@/components/ui/button';
66
@@ -12,7 +12,11 @@ function switchTheme() {
1212

1313
<template>
1414
<div class="flex w-full px-4 py-2 items-center justify-between border-b border-b-border">
15-
<a href="https://twir.app">Twitch token generator</a>
15+
<span class="flex gap-4">
16+
<a href="https://twir.app" target="_blank">Twir</a>
17+
<SeparatorVertical />
18+
<a href="/">Twitch Tokens Generator</a>
19+
</span>
1620
<Button @click="switchTheme">
1721
<Sun v-if="mode === 'dark'" />
1822
<Moon v-else />

src/components/Secrets.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const redirectLink = window.location.origin
2727
<CardTitle>Applications secrets</CardTitle>
2828
<CardDescription class="flex flex-col">
2929
<span>
30-
Your twitch clientId and clientSecret. Note, we are not storing your data on our servers, local storage of browser used instead.
30+
We are not storing your data on our servers. Local storage of browser used instead.
3131
</span>
3232
<span>
3333
You must set the redirect URL for your TwitchDev application to: <code class="relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold">{{ redirectLink }}</code>

0 commit comments

Comments
 (0)