|
|
|
|
@@ -1,54 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Nunito } from "next/font/google";
|
|
|
|
|
import { Heebo } 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 nunito = Nunito({
|
|
|
|
|
variable: "--font-nunito", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const heebo = Heebo({ subsets: ["hebrew", "latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "אתר פלוס - בניית אתרים מקצועיים לעסקים קטנים", description: "בנו אתר מקצועי לעסק שלכם בתוך 48 שעות. מותאם לנייד, מהיר וממביא לקוחות. עבור חנויות, מסעדות, מאמנים ועוד.", keywords: "בניית אתרים, עיצוב אתר, אתר לעסק, חנות אונליין, אתר מקצועי, הנדסה דיגיטלית", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "אתר פלוס - אתרים מקצועיים לעסקים", description: "בנו אתר מודרני שמביא לקוחות. מותאם לנייד ומהיר.", type: "website", siteName: "אתר פלוס", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/research-analysis-ideas-strategy-information-concept_53876-123886.jpg", alt: "אתר מודרני מקצועי"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "אתר פלוס", description: "בנו אתר מקצועי לעסק שלכם", images: ["http://img.b2bpic.net/free-photo/research-analysis-ideas-strategy-information-concept_53876-123886.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "אתר פלוס - בנייה מקצועית של אתרים לעסקים", description: "אתרים מודרניים לעסקים קטנים ובינוניים. בנייה מהירה, עיצוב יפה, ותוצאות שמביאות לקוחות חדשים."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="he" dir="rtl">
|
|
|
|
|
<body className={heebo.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|