Skip to content

Commit

Permalink
Merge pull request #39 from igdiaysu/content-12
Browse files Browse the repository at this point in the history
Content 12
  • Loading branch information
igdiaysu authored Feb 4, 2024
2 parents 767fd03 + 4f501c5 commit 259c07c
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 10 deletions.
50 changes: 41 additions & 9 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
vite: {
ssr: {
noExternal: ['@discord-message-components/vue']
}
ssr: {
noExternal: ['@discord-message-components/vue']
}
},
title: 'Senchabot',
description: 'Documentation',
Expand All @@ -16,16 +16,48 @@ export default defineConfig({

head: [
['link', { rel: 'icon', href: '/favicon.ico' }],
['meta', { name: 'description', content: 'Open-source multi-platform bot development project, which works on Twitch and Discord.' }],
[
'meta',
{
name: 'description',
content:
'Open-source multi-platform bot development project, which works on Twitch and Discord.'
}
],
['meta', { name: 'theme-color', content: '#20AB8C' }],
['meta', { name: 'og:type', content: 'website' }],
['meta', { name: 'og:site_name', content: 'Senchabot' }],
['meta', { name: 'og:image', content: 'https://avatars.githubusercontent.com/u/125701962' }],
['meta', { name: 'og:description', content: 'Open-source multi-platform bot development project, which works on Twitch and Discord.' }],
[
'meta',
{
name: 'og:image',
content: 'https://avatars.githubusercontent.com/u/125701962'
}
],
[
'meta',
{
name: 'og:description',
content:
'Open-source multi-platform bot development project, which works on Twitch and Discord.'
}
],
['meta', { name: 'twitter:site', content: '@senchabot' }],
['meta', { name: 'twitter:card', content: 'summary' }],
['meta', { name: 'twitter:description', content: 'Open-source Discord and Twitch bot' }],
['meta', { name: 'twitter:image', content: 'https://avatars.githubusercontent.com/u/125701962' }],
[
'meta',
{
name: 'twitter:description',
content: 'Open-source Discord and Twitch bot'
}
],
[
'meta',
{
name: 'twitter:image',
content: 'https://avatars.githubusercontent.com/u/125701962'
}
],
['meta', { name: 'robots', content: 'index,follow' }],
[
'script',
Expand Down Expand Up @@ -208,7 +240,7 @@ export default defineConfig({
tr: {
label: 'Türkçe',
lang: 'tr',
link: '/tr',
link: '/tr/',
themeConfig: {
docFooter: {
prev: 'Önceki sayfa',
Expand Down
24 changes: 23 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# Introduction
# Introduction


<style src="@theme/custom.css" scoped></style>
<div>
<a class="content-ref-s" href="/twitch-bot/getting-started">
<span class="ref-details-s">
<span class="content-ref-page-title-s">Twitch / Getting Started</span>
</span>
<svg style="width:32px;height:32px;" viewBox="0 0 20 20" class="content-ref-svg" aria-hidden="true"><path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z"></path></svg>
</a>
</div>

<style src="@theme/custom.css" scoped></style>
<div>
<a class="content-ref-s" href="/discord-bot/getting-started">
<span class="ref-details-s">
<span class="content-ref-page-title-s">Discord / Getting Started</span>
</span>
<svg style="width:32px;height:32px;" viewBox="0 0 20 20" class="content-ref-svg" aria-hidden="true"><path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z"></path></svg>
</a>
</div>

21 changes: 21 additions & 0 deletions docs/tr/index.md
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
# Giriş

<style src="@theme/custom.css" scoped></style>
<div>
<a class="content-ref-s" href="/twitch-bot/getting-started">
<span class="ref-details-s">
<span class="content-ref-page-title-s">Twitch / Başlamadan Önce</span>
</span>
<svg style="width:32px;height:32px;" viewBox="0 0 20 20" class="content-ref-svg" aria-hidden="true"><path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z"></path></svg>
</a>
</div>

<style src="@theme/custom.css" scoped></style>
<div>
<a class="content-ref-s" href="/discord-bot/getting-started">
<span class="ref-details-s">
<span class="content-ref-page-title-s">Discord / Başlamadan Önce</span>
</span>
<svg style="width:32px;height:32px;" viewBox="0 0 20 20" class="content-ref-svg" aria-hidden="true"><path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z"></path></svg>
</a>
</div>

0 comments on commit 259c07c

Please sign in to comment.