Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-09 20:18:03 +00:00
2 changed files with 25 additions and 47 deletions

View File

@@ -1,58 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Starostova Hospoda - Tradiční česká hospoda od 1993", description: "Autentická česká hospoda od roku 1993 vedle dřevěné kaple z 14. století. Sály pro akce, tradičních česká jídla, ubytování. Rezervace dostupné.", keywords: "česká hospoda, tradiční jídla, sála pro akce, rezervace, Praha, restaurace", metadataBase: new URL("https://starostovahospoda.cz"),
alternates: {
canonical: "https://starostovahospoda.cz"},
openGraph: {
title: "Starostova Hospoda - Tradiční česká hospoda", description: "Tradiční česká hospoda s autentickou atmosférou. Jídla, piva, sály pro všechny příležitosti.", url: "https://starostovahospoda.cz", siteName: "Starostova Hospoda", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/decorative-background-wood-texture_23-2148210001.jpg", alt: "Starostova Hospoda - interiér"},
],
},
twitter: {
card: "summary_large_image", title: "Starostova Hospoda", description: "Tradiční česká hospoda od roku 1993", images: ["http://img.b2bpic.net/free-photo/decorative-background-wood-texture_23-2148210001.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Starostova Hospoda", description: "Tradiční česká hospoda od roku 1993"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,7 +8,7 @@ import ProductCardThree from "@/components/sections/product/ProductCardThree";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Clock, Building2, Sparkles, UtensilsCrossed, Wine, Phone, Coffee } from "lucide-react";
import { Clock, Building2, Sparkles, UtensilsCrossed, Wine, Phone, Coffee, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -127,15 +127,24 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "starosts-spiz", name: "Starostův špíz", price: "285 Kč", imageSrc: "http://img.b2bpic.net/free-photo/roasted-beef-sirloin-with-rosemary-pepper_1150-18510.jpg", imageAlt: "Starostův špíz"},
id: "starosts-spiz", name: "Starostův špíz", price: "285 Kč", imageSrc: "http://img.b2bpic.net/free-photo/roasted-beef-sirloin-with-rosemary-pepper_1150-18510.jpg", imageAlt: "Starostův špíz", priceButtonProps: {
className: "ring-2 ring-accent-primary"
}
},
{
id: "sous-vide-pork", name: "Sous-vide vepřový knedel", price: "325 Kč", imageSrc: "http://img.b2bpic.net/free-photo/cabbage-dolma-rolls-white-plate-basket-bread_114579-30036.jpg", imageAlt: "Sous-vide vepřový knedel"},
id: "sous-vide-pork", name: "Sous-vide vepřový knedel", price: "325 Kč", imageSrc: "http://img.b2bpic.net/free-photo/cabbage-dolma-rolls-white-plate-basket-bread_114579-30036.jpg", imageAlt: "Sous-vide vepřový knedel", priceButtonProps: {
className: "ring-2 ring-accent-primary"
}
},
{
id: "rump-steak", name: "Rump Steak s brambory", price: "385 Kč", imageSrc: "http://img.b2bpic.net/free-photo/side-view-hands-holding-black-plate-with-green-spinach-humus-with-brown-rice-shrimps_140725-12901.jpg", imageAlt: "Rump Steak"},
{
id: "Czech-goulash", name: "Český guláš s chlebem", price: "245 Kč", imageSrc: "http://img.b2bpic.net/free-photo/tasty-chicken-soup-with-potato_140725-113749.jpg", imageAlt: "Český guláš"},
{
id: "pork-knuckle", name: "Vepřové koleno s křenem", price: "395 Kč", imageSrc: "http://img.b2bpic.net/free-photo/roasted-ham-food-photography-recipe-idea_53876-47153.jpg", imageAlt: "Vepřové koleno"},
id: "pork-knuckle", name: "Vepřové koleno s křenem", price: "395 Kč", imageSrc: "http://img.b2bpic.net/free-photo/roasted-ham-food-photography-recipe-idea_53876-47153.jpg", imageAlt: "Vepřové koleno", priceButtonProps: {
className: "ring-2 ring-accent-primary"
}
},
{
id: "trout", name: "Pstruh na másle se salátem", price: "320 Kč", imageSrc: "http://img.b2bpic.net/free-photo/top-view-salmon-rings-cooked-seasoned-with-salt-pepper-lemon-tomatoes-placed-near-salmon_482257-33008.jpg", imageAlt: "Pstruh na másle"},
]}