7 Commits

Author SHA1 Message Date
121d3fd97a Update src/app/page.tsx 2026-03-03 18:35:21 +00:00
c0dffb3c3a Update src/app/layout.tsx 2026-03-03 18:35:21 +00:00
06b3a33da4 Merge version_2 into main
Merge version_2 into main
2026-03-03 18:22:53 +00:00
d1671c04fa Update src/app/layout.tsx 2026-03-03 18:22:46 +00:00
5620441fab Merge version_1 into main
Merge version_1 into main
2026-03-03 17:46:08 +00:00
6cbd9814ea Merge version_1 into main
Merge version_1 into main
2026-03-03 17:34:53 +00:00
50e7e0eda4 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:23:43 +00:00
2 changed files with 10 additions and 50 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Coffee Bean Kávézó Specialty kávé és sütemények Budapest", description: "Frenetikus specialty kávé, finom sütemények, trendi hangulat. Csoportos foglalás, catering, rendezvény. 4,8★ értékelés. Hívj vagy foglalj online!", keywords: "kávézó Budapest, specialty kávé, sütemény, catering, csoportos foglalás", metadataBase: new URL("https://coffeebean.hu"),
alternates: {
canonical: "https://coffeebean.hu"
},
openGraph: {
title: "Coffee Bean Kávézó Specialty kávé és sütemények", description: "Fedezd fel a Coffee Bean Kávézót a legjobb specialty kávé és friss sütemények a városban.", url: "https://coffeebean.hu", siteName: "Coffee Bean Kávézó", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg", alt: "Coffee Bean Kávézó specialty kávé és stílusos hangulat"
}
]
},
twitter: {
card: "summary_large_image", title: "Coffee Bean Kávézó Specialty kávé", description: "Valódi specialty kávé, profi barista, friss sütemények. Hívj: {{PHONE}}", images: ["http://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Coffee Bean Kávézó", description: "Specialty kávé, friss sütemények, és stílusos hangulat."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="hu">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -110,10 +110,10 @@ export default function LandingPage() {
tag="Bestsellers"
products={[
{
id: "1", name: "Banán Turmix", price: "1200 Ft", variant: "Banán, joghurt, méz természetes energia", imageSrc: "http://img.b2bpic.net/free-photo/various-cakes-supermarket-shelves-sale_627829-7332.jpg?_wi=2", imageAlt: "Banán Turmix"
id: "2", name: "Cappuccino", price: "850 Ft", variant: "Klasszikus, tökéletes arányokkal", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-barista-make-latte-coffee-art-paint_1150-12161.jpg?_wi=2", imageAlt: "Cappuccino"
},
{
id: "2", name: "Cappuccino", price: "850 Ft", variant: "Klasszikus, tökéletes arányokkal", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-barista-make-latte-coffee-art-paint_1150-12161.jpg?_wi=2", imageAlt: "Cappuccino"
id: "1", name: "Banán Turmix", price: "1200 Ft", variant: "Banán, joghurt, méz természetes energia", imageSrc: "http://img.b2bpic.net/free-photo/various-cakes-supermarket-shelves-sale_627829-7332.jpg?_wi=2", imageAlt: "Banán Turmix"
},
{
id: "3", name: "Espresso", price: "650 Ft", variant: "Erős, tiszta, intenzív", imageSrc: "http://img.b2bpic.net/free-photo/waiter-making-cup-coffee-from-espresso-machine_107420-65856.jpg", imageAlt: "Espresso"
@@ -316,4 +316,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}