fix build + add logo and name

This commit is contained in:
hamid zarghami
2025-10-16 12:34:10 +03:30
parent 225329f342
commit afe3b703c4
7 changed files with 85 additions and 7 deletions
+7 -3
View File
@@ -8,10 +8,14 @@ import ToastContainer from "@/components/Toast";
import MobileBottomMenu from "@/components/MobileBottomMenu";
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
import { viewport } from './viewport'
import { SHOP_CONFIG } from "@/config/const";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: `${SHOP_CONFIG.fullName} | ${SHOP_CONFIG.englishName}`,
description: SHOP_CONFIG.description,
icons: {
icon: '/favicon.svg',
},
};
export { viewport };
@@ -22,7 +26,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="fa" dir="rtl">
<body>
<QueryProvider>
{children}