Merge version_2 into main #2
@@ -1,59 +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";
|
||||
|
||||
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: "Pizzeria Bella | Authentic Italian Pizza & Reservations", description: "Experience authentic Italian pizza at Pizzeria Bella. Reserve your table now and discover traditional wood-fired pizza crafted with premium ingredients and expert techniques.", keywords: "pizzeria, Italian pizza, wood-fired pizza, authentic pizza, restaurant reservations, pizza restaurant", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
metadataBase: new URL("https://pizzeriabella.com"),
|
||||
alternates: {
|
||||
canonical: "https://pizzeriabella.com"},
|
||||
openGraph: {
|
||||
title: "Pizzeria Bella | Authentic Italian Pizza", description: "Reserve your dining experience at Pizzeria Bella - authentic Italian pizzas made with traditional methods", url: "https://pizzeriabella.com", siteName: "Pizzeria Bella", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/top-view-mushroom-pizza-sliced-cooked-dough-with-cheese-olives-dark-surface-food-italian-pizza-bake-dough-meal_140725-101984.jpg", alt: "Authentic Italian pizza at Pizzeria Bella"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Pizzeria Bella | Authentic Italian Pizza", description: "Experience traditional wood-fired pizza. Reserve your table now!", images: [
|
||||
"http://img.b2bpic.net/free-photo/top-view-mushroom-pizza-sliced-cooked-dough-with-cheese-olives-dark-surface-food-italian-pizza-bake-dough-meal_140725-101984.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Pizzeria Bella", description: "Authentic Italian Pizza Experience"};
|
||||
|
||||
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: `
|
||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -79,6 +79,10 @@ export default function LandingPage() {
|
||||
tag="Heritage & Quality"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Explore Our Menu", href: "features" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
|
||||
Reference in New Issue
Block a user