metadata
This commit is contained in:
@@ -7,8 +7,6 @@ import { getMessages } from "next-intl/server";
|
|||||||
import { InitialLoading } from "@/components/initialLoading/initialLoading";
|
import { InitialLoading } from "@/components/initialLoading/initialLoading";
|
||||||
import { Providers } from "@/components/provider";
|
import { Providers } from "@/components/provider";
|
||||||
|
|
||||||
("info@ignum-tech.com");
|
|
||||||
|
|
||||||
const geistSans = Geist({
|
const geistSans = Geist({
|
||||||
variable: "--font-geist-sans",
|
variable: "--font-geist-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
@@ -20,10 +18,77 @@ const geistMono = Geist_Mono({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "FireForce - Emergency Services",
|
title: {
|
||||||
|
default: "Ignum Technologies - Fire Safety Systems Installation & Sales",
|
||||||
|
template: "%s | Ignum Technologies",
|
||||||
|
},
|
||||||
description:
|
description:
|
||||||
"FireForce - Your trusted emergency response team bringing calm amidst chaos",
|
"Ignum Technologies specializes in professional fire safety systems installation and sales. Protect your property with cutting-edge fire detection, suppression, and alarm systems from certified experts.",
|
||||||
generator: "v0.app",
|
keywords: [
|
||||||
|
"fire safety systems",
|
||||||
|
"fire alarm installation",
|
||||||
|
"fire suppression systems",
|
||||||
|
"fire detection",
|
||||||
|
"Ignum Technologies",
|
||||||
|
"fire safety equipment",
|
||||||
|
"fire protection services",
|
||||||
|
"commercial fire systems",
|
||||||
|
"residential fire safety",
|
||||||
|
],
|
||||||
|
authors: [{ name: "Ignum Technologies" }],
|
||||||
|
creator: "Ignum Technologies",
|
||||||
|
publisher: "Ignum Technologies",
|
||||||
|
formatDetection: {
|
||||||
|
email: false,
|
||||||
|
address: false,
|
||||||
|
telephone: false,
|
||||||
|
},
|
||||||
|
metadataBase: new URL("https://ignum-tech.com"), // O'zingizning domen manzilingizni kiriting
|
||||||
|
alternates: {
|
||||||
|
canonical: "/",
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
type: "website",
|
||||||
|
locale: "uz_UZ",
|
||||||
|
url: "https://ignum-tech.com",
|
||||||
|
siteName: "Ignum Technologies",
|
||||||
|
title: "Ignum Technologies - Professional Fire Safety Systems",
|
||||||
|
description:
|
||||||
|
"Leading provider of fire safety systems installation and sales. Comprehensive fire protection solutions including detection, suppression, and alarm systems for commercial and residential properties.",
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: "/og-image.jpg", // 1200x630 o'lchamda rasm qo'shing
|
||||||
|
width: 1200,
|
||||||
|
height: 630,
|
||||||
|
alt: "Ignum Technologies - Fire Safety Systems",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/og-image-square.jpg", // 1200x1200 o'lchamda rasm qo'shing
|
||||||
|
width: 1200,
|
||||||
|
height: 1200,
|
||||||
|
alt: "Ignum Technologies Logo",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Ignum Technologies - Fire Safety Systems Installation & Sales",
|
||||||
|
description:
|
||||||
|
"Professional fire safety systems installation and sales. Protect your property with certified fire detection, suppression, and alarm solutions.",
|
||||||
|
images: ["/twitter-image.jpg"], // 1200x600 o'lchamda rasm qo'shing
|
||||||
|
creator: "@ignumtech", // Twitter username-ingizni kiriting
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
googleBot: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
"max-video-preview": -1,
|
||||||
|
"max-image-preview": "large",
|
||||||
|
"max-snippet": -1,
|
||||||
|
},
|
||||||
|
},
|
||||||
icons: {
|
icons: {
|
||||||
icon: [
|
icon: [
|
||||||
{
|
{
|
||||||
@@ -41,6 +106,10 @@ export const metadata: Metadata = {
|
|||||||
],
|
],
|
||||||
apple: "/apple-icon.png",
|
apple: "/apple-icon.png",
|
||||||
},
|
},
|
||||||
|
verification: {
|
||||||
|
google: "your-google-verification-code", // Google Search Console verification kodi
|
||||||
|
// yandex: "your-yandex-verification-code", // Agar kerak bo'lsa
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function RootLayout({
|
export default async function RootLayout({
|
||||||
@@ -52,8 +121,17 @@ export default async function RootLayout({
|
|||||||
}>) {
|
}>) {
|
||||||
const { locale } = await params;
|
const { locale } = await params;
|
||||||
const messages: any = await getMessages();
|
const messages: any = await getMessages();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<html lang={locale} suppressHydrationWarning>
|
<html lang={locale} suppressHydrationWarning>
|
||||||
|
<head>
|
||||||
|
{/* Qo'shimcha SEO elementlar */}
|
||||||
|
<link rel="manifest" href="/manifest.json" />
|
||||||
|
<meta name="theme-color" content="#FF4500" />
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
||||||
|
<meta name="apple-mobile-web-app-title" content="Ignum Tech" />
|
||||||
|
</head>
|
||||||
<body
|
<body
|
||||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||||
>
|
>
|
||||||
|
|||||||
21
public/manifest.json
Normal file
21
public/manifest.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"name": "Ignum Technologies - Fire Safety Systems",
|
||||||
|
"short_name": "Ignum Tech",
|
||||||
|
"description": "Professional fire safety systems installation and sales",
|
||||||
|
"start_url": "/",
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"theme_color": "#FF4500",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/og-image.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/og-image.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 353 KiB After Width: | Height: | Size: 353 KiB |
4
public/robots.txt
Normal file
4
public/robots.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
User-agent: *
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
Sitemap: https://ignum-tech.com/sitemap.xml
|
||||||
Reference in New Issue
Block a user