Hamed744 commited on
Commit
b5188b9
·
verified ·
1 Parent(s): f5f700d

Update app/layout.tsx

Browse files
Files changed (1) hide show
  1. app/layout.tsx +11 -12
app/layout.tsx CHANGED
@@ -4,22 +4,21 @@
4
  //
5
 
6
  import type { Metadata } from "next";
7
- import { Inter } from "next/font/google";
8
  import "./globals.css";
9
 
10
- const inter = Inter({
11
- subsets: ["latin"],
12
- variable: "--font-inter",
13
  display: "swap",
14
  });
15
 
16
  export const metadata: Metadata = {
17
- title: "UltimaX Intelligence",
18
  description:
19
- "UltimaX Intelligence is a free AI platform unifying multiple premium AI models " +
20
- "with an intuitive ChatGPT-like interface. Powered by Pollinations open-source AI " +
21
- "and integrated with OpenWebUI, it offers advanced features, no cost, no registration, " +
22
- "and ensures user privacy with temporary, unsaved conversations.",
23
  };
24
 
25
  export default function RootLayout({
@@ -28,10 +27,10 @@ export default function RootLayout({
28
  children: React.ReactNode;
29
  }>) {
30
  return (
31
- <html lang="en">
32
- <body className={`${inter.variable} font-sans antialiased`}>
33
  {children}
34
  </body>
35
  </html>
36
  );
37
- }
 
4
  //
5
 
6
  import type { Metadata } from "next";
7
+ import { Vazirmatn } from "next/font/google";
8
  import "./globals.css";
9
 
10
+ const vazirmatn = Vazirmatn({
11
+ subsets: ["arabic"], // subsets for Persian include Arabic characters
12
+ variable: "--font-vazirmatn",
13
  display: "swap",
14
  });
15
 
16
  export const metadata: Metadata = {
17
+ title: "هوش مصنوعی آلتیمکس",
18
  description:
19
+ "هوش مصنوعی آلتیمکس یک پلتفرم رایگان است که چندین مدل هوش مصنوعی پیشرفته را " +
20
+ "در یک رابط کاربری ساده و شبیه به ChatGPT ارائه می‌دهد. این سرویس بدون نیاز به ثبت‌نام " +
21
+ "و کاملاً رایگان است و با حذف مکالمات پس از مدتی، حریم خصوصی کاربران را تضمین می‌کند.",
 
22
  };
23
 
24
  export default function RootLayout({
 
27
  children: React.ReactNode;
28
  }>) {
29
  return (
30
+ <html lang="fa" dir="rtl">
31
+ <body className={`${vazirmatn.variable} font-sans antialiased`}>
32
  {children}
33
  </body>
34
  </html>
35
  );
36
+ }