diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1320981..4b73002 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Heebo } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const heebo = Heebo({ subsets: ['hebrew'] }); export const metadata: Metadata = { - title: "רינגלבלום 13 בר - המקום הטוב בבאר שבע", - description: "רינגלבלום 13 בר ומסעדה בבאר שבע - אוכל איכותי, משקאות, אווירה צעירה. דירוג 4.9 כוכבים מ-624 ביקורות. הזמן עכשיו!", - keywords: "בר באר שבע, מסעדה באר שבע, אוכל טבעוני, חיי לילה, רינגלבלום", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "רינגלבלום 13 בר - המקום הטוב בבאר שבע", - description: "בר ומסעדה עם אוכל איכותי ואווירה מעולה", - type: "website", - siteName: "רינגלבלום 13", - images: [ - { - url: "http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg", - alt: "אווירת בר רינגלבלום 13", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "רינגלבלום 13 בר", - description: "בר ומסעדה עם אוכל איכותי ואווירה מעולה", - images: ["http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088580.jpg"], - }, + title: 'רינגלבלום 13 - בר ומסעדה בבאר שבע', + description: 'בר ומסעדה עם אוכל איכותי, מוזיקה מעולה, וייב צעיר. הזמנו כבר!', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}