From c2a9b5ee7edd6a3af93a27eba31e5279144951e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 22:53:47 +0300 Subject: [PATCH 01/10] ci: run lint workflow only in main pr --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ce3cae5..987f32d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,8 +1,8 @@ name: Lint on: - push: pull_request: + branches: [main] jobs: lint: From b3bc335b5c39f5fa37873a3c6a72ce95cebf1202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:12:31 +0300 Subject: [PATCH 02/10] ci: add pr comment notification for data generation --- .github/workflows/generator.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml index 97a5c02..d1c3816 100644 --- a/.github/workflows/generator.yml +++ b/.github/workflows/generator.yml @@ -9,6 +9,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: write + pull-requests: write steps: - name: Checkout uses: actions/checkout@v4 @@ -40,6 +41,18 @@ jobs: NODE_VERSION: '22' - name: Commit and Push changes + id: auto-commit uses: stefanzweifel/git-auto-commit-action@v5 with: - commit_message: "chore: auto-generate data and og images" + commit_options: '--no-verify' + commit_message: 'chore: auto-generate data and og images' + + - name: Comment on PR + if: steps.auto-commit.outputs.changes_detected == 'true' + uses: thollander/actions-comment-pull-request@v3 + with: + message: | + ### 🤖 Data Generation Update + New data and OG images have been automatically generated. + Please **review the changes** and ensure that any missing **descriptions** or **colors** are filled in manually. + github-token: ${{ secrets.GITHUB_TOKEN }} From 1a05378ada163848f82d5ecfb6bce4d27fab8ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:12:50 +0300 Subject: [PATCH 03/10] ci: pr preview workflow implemented --- .github/workflows/preview.yml | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/preview.yml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml new file mode 100644 index 0000000..90a72d9 --- /dev/null +++ b/.github/workflows/preview.yml @@ -0,0 +1,60 @@ +name: Preview Deployment + +on: + pull_request: + types: [opened, synchronize, reopened] + branches: [main] + +jobs: + deploy-preview: + runs-on: ubuntu-latest + permissions: + contents: read + deployments: write + pull-requests: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + cache: pnpm + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Generate and Build + run: | + pnpm generate:data + pnpm generate:og + pnpm build + env: + NODE_VERSION: '22' + + - name: Deploy Preview to Cloudflare Pages + id: preview + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + command: pages deploy dist --project-name=4byte-dev --branch=${{ github.head_ref }} + + - name: Add or Update PR Comment + uses: marocchino/sticky-pull-request-comment@v2 + with: + header: preview-url + message: | + 🚀 **Preview Deployment is Ready!** + + You can test the updates in this PR in a live environment by clicking the link below: + 🔗 [View Preview](${{ steps.preview.outputs.deployment-url }}) + + *(This environment is specific to this PR and does not affect the `main` branch. The content at this link will update automatically when you push new commits to the PR.)* From e0a307fb1fe2c1920fd4d271c00f105b63ebb1b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:13:07 +0300 Subject: [PATCH 04/10] chore: fix lint --- scripts/generate-og.mjs | 6 +++--- src/components/LanguageSelector.astro | 2 +- src/components/Sidebar.astro | 17 +++++++++++++++-- src/components/TopBar.astro | 7 ++++++- src/i18n/index.ts | 2 +- src/layouts/BaseLayout.astro | 2 +- src/layouts/DocsLayout.astro | 1 - src/pages/categories/[slug].astro | 20 ++++++++++---------- src/pages/categories/index.astro | 9 ++++++++- src/pages/en/categories/[slug].astro | 24 +++++++++++------------- src/pages/en/categories/index.astro | 9 ++++++++- src/pages/en/tags/[slug].astro | 20 ++++++++++---------- src/pages/en/tags/index.astro | 8 +++++++- src/pages/tags/[slug].astro | 12 +++++++----- src/pages/tags/index.astro | 8 +++++++- 15 files changed, 95 insertions(+), 52 deletions(-) diff --git a/scripts/generate-og.mjs b/scripts/generate-og.mjs index bb83e1e..a4e9fe3 100644 --- a/scripts/generate-og.mjs +++ b/scripts/generate-og.mjs @@ -67,9 +67,9 @@ async function makeSvg(title, color, isArticle, lang = 'en', logo) { type: 'img', props: { src: `data:image/png;base64,${logo}`, - height: 48 + height: 48, }, - } + }, ], }, }, @@ -146,7 +146,7 @@ async function makeSvg(title, color, isArticle, lang = 'en', logo) { type: 'img', props: { src: `data:image/png;base64,${logo}`, - height: 48 + height: 48, }, }, { diff --git a/src/components/LanguageSelector.astro b/src/components/LanguageSelector.astro index 00881b4..a489c88 100644 --- a/src/components/LanguageSelector.astro +++ b/src/components/LanguageSelector.astro @@ -35,7 +35,7 @@ const dropdownClass = isUp > {langLabels?.[currentLang] || currentLang.toUpperCase()} - {!isUp && } + {!isUp && }
| undefined const themeLabels = labels.theme as Record | undefined diff --git a/src/components/TopBar.astro b/src/components/TopBar.astro index 22915cf..ff095d0 100644 --- a/src/components/TopBar.astro +++ b/src/components/TopBar.astro @@ -12,7 +12,12 @@ interface Props { const { lang, currentPath, labels } = Astro.props -const rawArticles = lang === 'en' ? rawArticlesEn : rawArticlesTr +interface Article { + slug: string + title: string +} + +const rawArticles: Article[] = lang === 'en' ? rawArticlesEn : rawArticlesTr const mappedArticles = rawArticles.map((a) => ({ id: a.slug, title: a.title, diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 549d1e8..e44bb44 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -42,7 +42,7 @@ export function getOtherLang(currentLang: string): string { return SUPPORTED_LANGS.find((l) => l !== currentLang) || DEFAULT_LANG } -export function getHreflangLinks(currentPath: string, currentLang: string): Array<{ lang: string; href: string }> { +export function getHreflangLinks(currentPath: string): Array<{ lang: string; href: string }> { const links: Array<{ lang: string; href: string }> = [] for (const lang of SUPPORTED_LANGS) { const href = getAlternatePath(lang, currentPath) diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 57ad1d4..1047fac 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -39,7 +39,7 @@ const siteName = SITE.name const fullTitle = title ? `${title} | ${siteName}` : siteName const langConfig = LANGUAGES[currentLang as keyof typeof LANGUAGES] -const hreflangLinks = getHreflangLinks(currentPath, currentLang) +const hreflangLinks = getHreflangLinks(currentPath) const jsonLdWebSite = { '@context': 'https://schema.org', diff --git a/src/layouts/DocsLayout.astro b/src/layouts/DocsLayout.astro index 1c869e9..f6dc325 100644 --- a/src/layouts/DocsLayout.astro +++ b/src/layouts/DocsLayout.astro @@ -2,7 +2,6 @@ import BaseLayout from './BaseLayout.astro' import Sidebar from '../components/Sidebar.astro' import TopBar from '../components/TopBar.astro' -import { DEFAULT_LANG, LANGUAGES } from '../helper.mjs' import { getLangFromUrl, loadLabels, t } from '../i18n/index.ts' interface Props { diff --git a/src/pages/categories/[slug].astro b/src/pages/categories/[slug].astro index 8a52578..4ec7007 100644 --- a/src/pages/categories/[slug].astro +++ b/src/pages/categories/[slug].astro @@ -5,26 +5,26 @@ import categoriesTr from '../../data/tr/categories.json' import categoriesEn from '../../data/en/categories.json' import { getLangFromUrl, t } from '../../i18n/index.ts' +interface Category { + slug: string + name: string + description: string + articleCount: number +} + const lang = getLangFromUrl(Astro.url) -const categories = lang === 'en' ? categoriesEn : categoriesTr const labels = await import(`../../data/${lang}/labels.json`).then((m) => m.default) export async function getStaticPaths() { const allArticles = await getCollection('articles') const paths = [] - for (const lang of ['tr', 'en']) { - const langCategories = lang === 'en' ? categoriesEn : categoriesTr + for (const currentLang of ['tr', 'en']) { + const langCategories: Category[] = currentLang === 'en' ? categoriesEn : categoriesTr for (const cat of langCategories) { - const catArticles = allArticles.filter( - (a) => - a.data.lang === lang && - a.data.category.toLowerCase().replace(/\s+/g, '-') === cat.slug && - a.data.status === 'Published', - ) paths.push({ params: { slug: cat.slug }, - props: { category: cat, lang }, + props: { category: cat, lang: currentLang }, }) } } diff --git a/src/pages/categories/index.astro b/src/pages/categories/index.astro index f0bdb83..ccafb89 100644 --- a/src/pages/categories/index.astro +++ b/src/pages/categories/index.astro @@ -4,8 +4,15 @@ import categoriesTr from '../../data/tr/categories.json' import categoriesEn from '../../data/en/categories.json' import { getLangFromUrl, t } from '../../i18n/index.ts' +interface Category { + slug: string + name: string + description: string + articleCount: number +} + const lang = getLangFromUrl(Astro.url) -const categories = lang === 'en' ? categoriesEn : categoriesTr +const categories: Category[] = lang === 'en' ? categoriesEn : categoriesTr const labels = await import(`../../data/${lang}/labels.json`).then((m) => m.default) --- diff --git a/src/pages/en/categories/[slug].astro b/src/pages/en/categories/[slug].astro index 48b8e92..fc0cb89 100644 --- a/src/pages/en/categories/[slug].astro +++ b/src/pages/en/categories/[slug].astro @@ -4,23 +4,21 @@ import { getCollection } from 'astro:content' import categoriesEn from '../../../data/en/categories.json' import { t } from '../../../i18n/index.ts' +interface Category { + slug: string + name: string + description: string + articleCount: number +} + const lang = 'en' const labels = await import(`../../../data/${lang}/labels.json`).then((m) => m.default) export async function getStaticPaths() { - const allArticles = await getCollection('articles') - return categoriesEn.map((cat) => { - const catArticles = allArticles.filter( - (a) => - a.data.lang === 'en' && - a.data.category.toLowerCase().replace(/\s+/g, '-') === cat.slug && - a.data.status === 'Published', - ) - return { - params: { slug: cat.slug }, - props: { category: cat }, - } - }) + return categoriesEn.map((cat: Category) => ({ + params: { slug: cat.slug }, + props: { category: cat }, + })) } const { category } = Astro.props diff --git a/src/pages/en/categories/index.astro b/src/pages/en/categories/index.astro index f0ca501..06afa19 100644 --- a/src/pages/en/categories/index.astro +++ b/src/pages/en/categories/index.astro @@ -3,6 +3,13 @@ import DocsLayout from '../../../layouts/DocsLayout.astro' import categoriesEn from '../../../data/en/categories.json' import { t } from '../../../i18n/index.ts' +interface Category { + slug: string + name: string + description: string + articleCount: number +} + const lang = 'en' const labels = await import(`../../../data/${lang}/labels.json`).then((m) => m.default) --- @@ -20,7 +27,7 @@ const labels = await import(`../../../data/${lang}/labels.json`).then((m) => m.d

{t(labels, 'categories.description')}

{ - categoriesEn.map((cat) => ( + categoriesEn.map((cat: Category) => ( m.default) export async function getStaticPaths() { - const allArticles = await getCollection('articles') - return tagsEn.map((tag) => { - const tagArticles = allArticles.filter( - (a) => a.data.lang === 'en' && a.data.tags.includes(tag.slug) && a.data.status === 'Published', - ) - return { - params: { slug: tag.slug }, - props: { tag }, - } - }) + return tagsEn.map((tag: Tag) => ({ + params: { slug: tag.slug }, + props: { tag }, + })) } const { tag } = Astro.props diff --git a/src/pages/en/tags/index.astro b/src/pages/en/tags/index.astro index 7c4056c..e389569 100644 --- a/src/pages/en/tags/index.astro +++ b/src/pages/en/tags/index.astro @@ -3,6 +3,12 @@ import DocsLayout from '../../../layouts/DocsLayout.astro' import tagsEn from '../../../data/en/tags.json' import { t } from '../../../i18n/index.ts' +interface Tag { + slug: string + name: string + articleCount: number +} + const lang = 'en' const labels = await import(`../../../data/${lang}/labels.json`).then((m) => m.default) --- @@ -20,7 +26,7 @@ const labels = await import(`../../../data/${lang}/labels.json`).then((m) => m.d

{t(labels, 'tags.description')}

{ - tagsEn.map((tag) => ( + tagsEn.map((tag: Tag) => ( m.default) export async function getStaticPaths() { @@ -14,11 +19,8 @@ export async function getStaticPaths() { const paths = [] for (const tagLang of ['tr', 'en']) { - const langTags = tagLang === 'en' ? tagsEn : tagsTr + const langTags: Tag[] = tagLang === 'en' ? tagsEn : tagsTr for (const tag of langTags) { - const tagArticles = allArticles.filter( - (a) => a.data.lang === tagLang && a.data.tags.includes(tag.slug) && a.data.status === 'Published', - ) paths.push({ params: { slug: tag.slug }, props: { tag, lang: tagLang }, diff --git a/src/pages/tags/index.astro b/src/pages/tags/index.astro index 2afe965..be6b13f 100644 --- a/src/pages/tags/index.astro +++ b/src/pages/tags/index.astro @@ -4,8 +4,14 @@ import tagsTr from '../../data/tr/tags.json' import tagsEn from '../../data/en/tags.json' import { getLangFromUrl, t } from '../../i18n/index.ts' +interface Tag { + slug: string + name: string + articleCount: number +} + const lang = getLangFromUrl(Astro.url) -const tags = lang === 'en' ? tagsEn : tagsTr +const tags: Tag[] = lang === 'en' ? tagsEn : tagsTr const labels = await import(`../../data/${lang}/labels.json`).then((m) => m.default) --- From 7b43c5da86bd7229311593ef9c023d7007d9b306 Mon Sep 17 00:00:00 2001 From: omerfdmrl <62325045+omerfdmrl@users.noreply.github.com> Date: Thu, 19 Mar 2026 20:13:54 +0000 Subject: [PATCH 05/10] chore: auto-generate data and og images --- src/data/en/articles.json | 2 +- src/data/en/categories.json | 2 +- src/data/en/tags.json | 2 +- src/data/tr/articles.json | 2 +- src/data/tr/categories.json | 2 +- src/data/tr/tags.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/en/articles.json b/src/data/en/articles.json index fe51488..0637a08 100644 --- a/src/data/en/articles.json +++ b/src/data/en/articles.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/en/categories.json b/src/data/en/categories.json index fe51488..0637a08 100644 --- a/src/data/en/categories.json +++ b/src/data/en/categories.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/en/tags.json b/src/data/en/tags.json index fe51488..0637a08 100644 --- a/src/data/en/tags.json +++ b/src/data/en/tags.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/articles.json b/src/data/tr/articles.json index fe51488..0637a08 100644 --- a/src/data/tr/articles.json +++ b/src/data/tr/articles.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/categories.json b/src/data/tr/categories.json index fe51488..0637a08 100644 --- a/src/data/tr/categories.json +++ b/src/data/tr/categories.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/tags.json b/src/data/tr/tags.json index fe51488..0637a08 100644 --- a/src/data/tr/tags.json +++ b/src/data/tr/tags.json @@ -1 +1 @@ -[] +[] \ No newline at end of file From db5f0997d50ba8882e042020158c88dd7bb04061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:16:35 +0300 Subject: [PATCH 06/10] chore: fix lint --- .github/workflows/generator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml index d1c3816..10d0eaf 100644 --- a/.github/workflows/generator.yml +++ b/.github/workflows/generator.yml @@ -46,7 +46,7 @@ jobs: with: commit_options: '--no-verify' commit_message: 'chore: auto-generate data and og images' - + - name: Comment on PR if: steps.auto-commit.outputs.changes_detected == 'true' uses: thollander/actions-comment-pull-request@v3 From 25b0ffc40bbc6970c15c25b11683ad202f3f345d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:21:10 +0300 Subject: [PATCH 07/10] ci: apply environments to preview workflow --- .github/workflows/preview.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 90a72d9..b98bb83 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -8,6 +8,7 @@ on: jobs: deploy-preview: runs-on: ubuntu-latest + environment: production permissions: contents: read deployments: write @@ -46,6 +47,8 @@ jobs: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} command: pages deploy dist --project-name=4byte-dev --branch=${{ github.head_ref }} + gitHubToken: ${{ secrets.GITHUB_TOKEN }} + wranglerVersion: '3' - name: Add or Update PR Comment uses: marocchino/sticky-pull-request-comment@v2 From f26a26db38e004d54c7a3276f7cadd1040788b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:22:45 +0300 Subject: [PATCH 08/10] ci: remove emojis from pr comments --- .github/workflows/generator.yml | 2 +- .github/workflows/preview.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml index 10d0eaf..3e49d6d 100644 --- a/.github/workflows/generator.yml +++ b/.github/workflows/generator.yml @@ -52,7 +52,7 @@ jobs: uses: thollander/actions-comment-pull-request@v3 with: message: | - ### 🤖 Data Generation Update + ### Data Generation Update New data and OG images have been automatically generated. Please **review the changes** and ensure that any missing **descriptions** or **colors** are filled in manually. github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index b98bb83..fd7cece 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -55,9 +55,9 @@ jobs: with: header: preview-url message: | - 🚀 **Preview Deployment is Ready!** + **Preview Deployment is Ready!** You can test the updates in this PR in a live environment by clicking the link below: - 🔗 [View Preview](${{ steps.preview.outputs.deployment-url }}) + [View Preview](${{ steps.preview.outputs.deployment-url }}) *(This environment is specific to this PR and does not affect the `main` branch. The content at this link will update automatically when you push new commits to the PR.)* From e9ba135fe1a8728b8ae61601ccc11bb46d9eb54b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Demirel?= Date: Thu, 19 Mar 2026 23:27:55 +0300 Subject: [PATCH 09/10] chore: fix lint --- src/data/en/articles.json | 2 +- src/data/en/categories.json | 2 +- src/data/en/tags.json | 2 +- src/data/tr/articles.json | 2 +- src/data/tr/categories.json | 2 +- src/data/tr/tags.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/en/articles.json b/src/data/en/articles.json index 0637a08..fe51488 100644 --- a/src/data/en/articles.json +++ b/src/data/en/articles.json @@ -1 +1 @@ -[] \ No newline at end of file +[] diff --git a/src/data/en/categories.json b/src/data/en/categories.json index 0637a08..fe51488 100644 --- a/src/data/en/categories.json +++ b/src/data/en/categories.json @@ -1 +1 @@ -[] \ No newline at end of file +[] diff --git a/src/data/en/tags.json b/src/data/en/tags.json index 0637a08..fe51488 100644 --- a/src/data/en/tags.json +++ b/src/data/en/tags.json @@ -1 +1 @@ -[] \ No newline at end of file +[] diff --git a/src/data/tr/articles.json b/src/data/tr/articles.json index 0637a08..fe51488 100644 --- a/src/data/tr/articles.json +++ b/src/data/tr/articles.json @@ -1 +1 @@ -[] \ No newline at end of file +[] diff --git a/src/data/tr/categories.json b/src/data/tr/categories.json index 0637a08..fe51488 100644 --- a/src/data/tr/categories.json +++ b/src/data/tr/categories.json @@ -1 +1 @@ -[] \ No newline at end of file +[] diff --git a/src/data/tr/tags.json b/src/data/tr/tags.json index 0637a08..fe51488 100644 --- a/src/data/tr/tags.json +++ b/src/data/tr/tags.json @@ -1 +1 @@ -[] \ No newline at end of file +[] From 7b36c6ad82465e1d2a63b088e971664a38a2be9b Mon Sep 17 00:00:00 2001 From: omerfdmrl <62325045+omerfdmrl@users.noreply.github.com> Date: Thu, 19 Mar 2026 20:28:26 +0000 Subject: [PATCH 10/10] chore: auto-generate data and og images --- src/data/en/articles.json | 2 +- src/data/en/categories.json | 2 +- src/data/en/tags.json | 2 +- src/data/tr/articles.json | 2 +- src/data/tr/categories.json | 2 +- src/data/tr/tags.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/en/articles.json b/src/data/en/articles.json index fe51488..0637a08 100644 --- a/src/data/en/articles.json +++ b/src/data/en/articles.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/en/categories.json b/src/data/en/categories.json index fe51488..0637a08 100644 --- a/src/data/en/categories.json +++ b/src/data/en/categories.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/en/tags.json b/src/data/en/tags.json index fe51488..0637a08 100644 --- a/src/data/en/tags.json +++ b/src/data/en/tags.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/articles.json b/src/data/tr/articles.json index fe51488..0637a08 100644 --- a/src/data/tr/articles.json +++ b/src/data/tr/articles.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/categories.json b/src/data/tr/categories.json index fe51488..0637a08 100644 --- a/src/data/tr/categories.json +++ b/src/data/tr/categories.json @@ -1 +1 @@ -[] +[] \ No newline at end of file diff --git a/src/data/tr/tags.json b/src/data/tr/tags.json index fe51488..0637a08 100644 --- a/src/data/tr/tags.json +++ b/src/data/tr/tags.json @@ -1 +1 @@ -[] +[] \ No newline at end of file