Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d1671c04fa | |||
| 5620441fab | |||
| 6cbd9814ea | |||
| 50e7e0eda4 |
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
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 { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Coffee Bean Kávézó", description: "Specialty kávé, friss sütemények, és stílusos hangulat."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="hu">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user