diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 51d894b..aa2137b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,34 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Professional Websites for Israeli Businesses | Webild", description: "Modern, fast, and affordable websites built for Israeli businesses. From information sites to interactive platforms. Free consultation.", keywords: "website design Israel, professional websites, web development, Israeli businesses, affordable web design, interactive websites", openGraph: { - title: "Professional Websites for Israeli Businesses | Webild", description: "We build modern websites that help Israeli businesses grow online. Fast delivery, affordable pricing, professional design.", siteName: "Webild", type: "website"}, - twitter: { - card: "summary_large_image", title: "Professional Websites for Israeli Businesses | Webild", description: "Modern websites for Israeli businesses. Fast delivery, affordable pricing, professional design."}, - robots: { - index: true, - follow: true, - }, -}; + title: "אתר+ | אתרים מקצועיים לעסקים בישראל", description: "אנחנו בונים אתרים מודרניים, מהירים ומקצועיים כדי שהעסק שלך יגדל באינטרנט. מאתרי מידע פשוטים לפלטפורמות אינטראקטיביות מלאות."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - + + +