diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a1c96cb..be14665 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-