mirror of
https://git.meshkee.com/Meshkee-Websites/havaran.git
synced 2026-08-11 20:40:58 +04:30
Clone product, solution, and company pages from the original site and wire articles/projects to the Meshkee Website API with pagination and media from the backend CDN. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
915 B
TypeScript
28 lines
915 B
TypeScript
import type { Metadata } from "next";
|
|
import { LatinDigitsEnhancer } from "@/components/LatinDigits";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "صفحه اصلی | رسام تجارت هواران",
|
|
description:
|
|
"شرکت رسام تجارت هواران در حوزه طراحی و تولید تجهیزاتی نظیر چیلر، فن، هواساز، فن کویل و غیره و همچنین توان و تجربه در امور بازرگانی اعضای مجموعه خود آماده همکاری و ارائه خدمات در این زمینه است.",
|
|
icons: {
|
|
icon: "/favicon.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="fa" dir="rtl">
|
|
<body className="min-h-full antialiased">
|
|
{children}
|
|
<LatinDigitsEnhancer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|