Merge version_2 into main #4

Merged
bender merged 3 commits from version_2 into main 2026-03-07 02:33:12 +00:00
3 changed files with 9 additions and 45 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken, crispy fries, and fast takeaway service in Zrenjanin. Order by phone at 023 607269. Visit Saveznička 5.", keywords: "fried chicken Zrenjanin, chicken takeaway, crispy chicken, pomfrit Zrenjanin, chicken wings, chicken sandwich", openGraph: {
title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken, crispy fries, and fast takeaway service. Call 023 607269 to order.", siteName: "Gangsta Chicken", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-background-sandwich-meat-food-dinner-fries-burger-meal_140725-157008.jpg", alt: "Crispy golden fried chicken"},
],
},
twitter: {
card: "summary_large_image", title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken and crispy fries. Order now: 023 607269", images: ["http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-background-sandwich-meat-food-dinner-fries-burger-meal_140725-157008.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Gangsta Chicken", description: "Крцкава пилећа меса припремљена са нашим тајним начином пржења. Свеж, пикантан и задовољавајући укус."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,7 +1,7 @@
"use client";
import React from "react";
import { ThemeProvider } from "@/components/theme/ThemeProvider";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import ProductCardThree from "@/components/sections/product/ProductCardThree";

View File

@@ -1,7 +1,7 @@
"use client";
import React from "react";
import { ThemeProvider } from "@/components/theme/ThemeProvider";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";