- Fix seed-products.ts TS error (implicit any) and BOM handling - Re-run full seed to restore correct Persian encoding in DB - Fix productService query→search param mismatch - Fix IngredientWiki hardcoded port 4000→use settingsStore - Restore seed-products-data.json from git after accidental corruption
12 lines
475 B
TypeScript
12 lines
475 B
TypeScript
import IngredientWiki from "../../components/IngredientWiki";
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'دانشنامه ترکیبات دارویی',
|
|
description: 'اطلاعات کامل در مورد مواد موثره، ویتامینها و ترکیبات گیاهی به کار رفته در محصولات تخصصی کانینا ایران.',
|
|
};
|
|
|
|
export default function WikiPage() {
|
|
return <IngredientWiki />;
|
|
}
|