Update src/app/layout.tsx

This commit is contained in:
2026-03-09 22:32:47 +00:00
parent 64b56f3a60
commit b6cd3f9cd6

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<html lang="he" dir="rtl" suppressHydrationWarning>
<body className={`${poppins.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
async
src="https://cdn.jsdelivr.net/npm/tsparticles-confetti@2.12.0/tsparticles.confetti.bundle.min.js"
></script>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1396,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}