Update src/app/layout.tsx

This commit is contained in:
2026-03-04 21:36:11 +00:00
parent bad7b8104e
commit b31f37b4f2

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AgroBot - Dixhitalizimi në Bujqësinë Shqiptare", description: "AgroBot: Asistenti inteligjent për fermerët shqiptarë. Kalendariu i mbjelljes, këshilla për ujitje, dhe teknologji e zgjuar për ferma moderno.", keywords: "bujqësi shqiptare, fermim dixhital, AgroBot, kalendariu mbjelljes, ujitje inteligjente, teknologji agrikole", openGraph: {
title: "AgroBot - Dixhitalizimi në Bujqësinë Shqiptare", description: "Zbuloni fuqinë e teknologjisë për të transformuar fermën tuaj me AgroBot.", url: "https://agrobot.al", siteName: "AgroBot", type: "website"},
twitter: {
card: "summary_large_image", title: "AgroBot - Asistenti për Fermerët", description: "Teknologjia e zgjuar për bujqësinë shqiptare"},
};
title: "AgroBot - Dixhitalizimi në Bujqësinë Shqiptare", description: "AgroBot është asistenti dixhital për fermerët shqiptarë. Mëso mbi mbjellje, ujitje, kalendariu i mbjelljes, dhe teknologjia e serave inteligjente."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="sq">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}