diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b45e989..0f9142f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,23 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } 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"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "לחם החיים | מאפייה בניל\"י - לחמים ומאפים טריים", description: "מאפיית לחם החיים בניל\"י - לחמים ומאפים אותנטיים מחומרי גלם איכותיים. דירוג 4.8 כוכבים. התקשר 054-486-1569.", keywords: "מאפייה בניל\"י, לחם טרי, בורקס, מאפים, לחם ארטיסני, ניל\"י", metadataBase: new URL("https://bread-of-life.co.il"),
- alternates: {
- canonical: "https://bread-of-life.co.il"
- },
- openGraph: {
- title: "לחם החיים | מאפייה בניל\"י", description: "מאפייה אותנטית של לחמים ומאפים טריים בניל\"י", url: "https://bread-of-life.co.il", siteName: "לחם החיים", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/breakfast-composition-with-diagonal-space_23-2147672460.jpg", alt: "fresh bread from Bread of Life bakery"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "לחם החיים | מאפייה בניל\"י", description: "לחמים ומאפים טריים מחומרי גלם איכותיים", images: ["http://img.b2bpic.net/free-photo/breakfast-composition-with-diagonal-space_23-2147672460.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "לחם החיים - Bread of Life", description: "לחמים ומאפים טריים מחומרי גלם איכותיים. אפייה מסורתית, טעם אמיתי, ושירות חם לכל לקוח."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-