first commit

This commit is contained in:
mstfyldz
2026-06-03 04:11:30 +03:00
parent d369c9e258
commit 7b4b3a85af
20 changed files with 3446 additions and 442 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
import { notFound } from 'next/navigation'
import { getDictionary, hasLocale } from './dictionaries'
import { categories } from '@/data/menu'
import { getCategories } from '@/data/menu'
import Header from '@/components/Header'
import CategorySection from '@/components/CategorySection'
import BottomTabBar from '@/components/BottomTabBar'
@@ -15,6 +15,7 @@ export default async function MenuPage({
if (!hasLocale(lang)) notFound()
const dict = await getDictionary(lang)
const categories = await getCategories()
return (
<>