feat: initial commit — site + admin panel + Postgres content pipeline

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
AyrisAI
2026-07-21 01:24:47 +03:00
co-authored by Claude Fable 5
commit 3420d32271
188 changed files with 25053 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<template>
<div class="bg-light text-sm py-1 sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 flex justify-between items-center">
<div class="flex items-center gap-3">
<a
href="https://www.instagram.com/mucomutfak/"
target="_blank"
rel="noopener noreferrer"
class="hover:text-highlight"
>
<component :is="icons.instagram" class="w-4.5 h-4.5" />
</a>
<a
href="https://www.tiktok.com/@mucomutfak/"
target="_blank"
rel="noopener noreferrer"
class="hover:text-highlight"
>
<component :is="icons.tiktok" class="w-4.5 h-4.5" />
</a>
<a
href="https://www.facebook.com/mucomutfakvekahve/"
target="_blank"
rel="noopener noreferrer"
class="hover:text-highlight"
>
<component :is="icons.facebook" class="w-4.5 h-4.5" />
</a>
</div>
<div>
<a
href="tel:+902522120777"
class="flex items-center gap-2 hover:text-highlight"
>
+90 (252) 212 07 77
</a>
</div>
<LanguageSwitcher />
</div>
</div>
</template>
<script setup lang="ts">
import { useI18n } from "vue-i18n";
import { useIcons } from "@/composables/useIcons";
const { t } = useI18n();
const icons = useIcons();
</script>