diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e038919..2b309c6 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,76 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Open_Sans } 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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "עמוס יוגב - אילוף כלבים בהוד השרון", description: "אילוף כלבים בגישה טבעית ללא חטיפים. 4.9 כוכבים מ-250+ לקוחות מרוצים. פנסיון ביתי ומעון יום לכלבים.", keywords: "אילוף כלבים, הוד השרון, פנסיון כלבים, מאמן כלבים, בעיות התנהגות", openGraph: {
- title: "עמוס יוגב - אילוף כלבים", description: "אילוף כלבים מקצועי בגישה טבעית ללא כוח או חטיפים", type: "website", siteName: "עמוס יוגב", images: [
- {
- url: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36153.jpg", alt: "אילוף כלבים מקצועי"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "עמוס יוגב - אילוף כלבים בהוד השרון", description: "שיטת אילוף טבעית, פנסיון ביתי, ופתרון בעיות התנהגות"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "עמוס יוגב - אילוף כלבים", description: "אילוף כלבים טבעי ללא חטיפים וללא כוח. פנסיון ביתי ומעון יום לכלבים."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-