3 Commits

Author SHA1 Message Date
32c995bba2 Switch to version 1: modified src/app/page.tsx 2026-03-08 00:12:22 +00:00
1e10767a7a Switch to version 1: modified src/app/layout.tsx 2026-03-08 00:12:22 +00:00
6c66c32fdd Merge version_2 into main
Merge version_2 into main
2026-03-07 23:57:40 +00:00
2 changed files with 42 additions and 10 deletions

View File

@@ -1,23 +1,54 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { DM_Sans } from "next/font/google"; import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({ const libreBaskerville = Libre_Baskerville({
subsets: ["latin"], variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "500", "600", "700"], weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Bar U Justyny - Domowe Obiady w Ursynowie", description: "Autentyczne polskie obiady, duże porcje, uczciwe ceny. Serdeczna obsługa w Ursynowie od 2040 zł."}; title: "Bar U Justyny | Tanie Obiady Domowe w Ursynowie Warszawa", description: "Autentyczne polskie obiady od 2040 zł. Duże porcje, świeże składniki, serdeczna obsługa. Jedzenie na miejscu, takeaway i dostarczamy w Ursynowie. ⭐ 4.5/5 z 690 opinii.", keywords: "obiady domowe Warszawa, tanie obiady Ursynów, bar mleczny Warszawa, kuchnia polska, takeaway Ursynów, dostarczamy obiady", metadataBase: new URL("https://barujustyny.pl"),
alternates: {
canonical: "https://barujustyny.pl"
},
openGraph: {
title: "Bar U Justyny - Autentyczne Polskie Obiady w Ursynowie", description: "Tradycyjne polskie dania, duże porcje, przystępne ceny. Od 2040 zł na osobę. Jedzenie na miejscu, takeaway, dostawa.", url: "https://barujustyny.pl", siteName: "Bar U Justyny", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/azerbaijani-meat-stew-piti-with-yogurt-wooden-board_114579-4556.jpg", alt: "Bar U Justyny - restauracja domowych obiadów"
}
]
},
twitter: {
card: "summary_large_image", title: "Bar U Justyny - Domowe Obiady w Ursynowie", description: "Autentyczne polskie dania, duże porcje, tanie. ⭐ 4.5/5 z 690 opinii.", images: ["http://img.b2bpic.net/free-photo/azerbaijani-meat-stew-piti-with-yogurt-wooden-board_114579-4556.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: { }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}) { }>) {
return ( return (
<html lang="pl"> <html lang="en" suppressHydrationWarning>
<body className={dmSans.className}>{children} <ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1385,6 +1416,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
title="Smacznie i Niedrogo w Ursynowie" title="Smacznie i Niedrogo w Ursynowie"
description="Autentyczne polskie obiady przygotowywane z tradycją i miłością. Duże porcje, uczciwe ceny, serdeczna obsługa. Od 2040 zł na osobę." description="Autentyczne polskie obiady przygotowywane z tradycją i miłością. Duże porcje, uczciwe ceny, serdeczna obsługa. Od 2040 zł na osobę."
buttons={[ buttons={[
{ text: "Zamów Teraz 791 110 121", href: "tel:791110121" }, { text: "ZADZWOŃ TERAZ", href: "tel:791110121" },
{ text: "Zamów Online", href: "#contact" } { text: "Zamów Online", href: "#contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"