diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 80f9cf6..05dddbc 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Mulish } 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 mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Lazarini печеното картофче - Бургас | Поръчка онлайн", description: "Най-вкусното печено картофче в Бургас. Големи порции, пресни съставки, бързо обслужване. Поръчай по телефон 089 784 8074. Адрес: ж.к. Възраждане, ул. Съгласие 6.", keywords: "печено картофче Бургас, храна за вкъщи, бързо хранене, печени картофи, поръчка храна, Возраждане Бургас", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Lazarini печеното картофче - Поръчай сега", description: "Най-вкусното печено картофче в Бургас. Grandes porции, пресни съставки, справедлива цена. Поръчай: 089 784 8074", type: "website", siteName: "Lazarini", url: "https://lazarini-burgas.com", images: [
- {
- url: "http://img.b2bpic.net/free-photo/top-view-boiled-chicken-with-cooked-potatoes-lemon-dark-background-photo-cuisine-dish-oil-color-food-meat-calorie-dinner-sauce_140725-158239.jpg", alt: "Lazarini популярно меню - печено картофче със пиле"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Lazarini печеното картофче - Бургас", description: "Най-добрите печени картофи с пресни съставки. Позвони: 089 784 8074", images: ["http://img.b2bpic.net/free-photo/delicious-roasted-young-potatoes-with-dill-top-view_114579-9739.jpg"],
- },
-};
+ title: "Lazarini - Печени картофи в Бургас", description: "Най-вкусните печени картофи с пресни съставки и бързо обслужване"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ef81690..a1d6032 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -143,7 +143,7 @@ export default function LandingPage() {