Files
havaran/src/app/layout.tsx
T
Alireza HassaniandCursor c49347061c Build Havaran storefront with Meshkee-backed blogs and portfolios.
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>
2026-08-09 15:54:40 +03:30

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>
);
}