Merge version_2 into main #2
@@ -1,49 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
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";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
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: "Casa Della Mozzarella - Best Mozzarella in NYC | Arthur Avenue", description: "Zagat-rated Italian deli in the Bronx. Fresh artisanal mozzarella, imported meats, and specialty sandwiches since 1987. 604 East 187th Street, Arthur Avenue.", keywords: "mozzarella, Italian deli, Bronx, Arthur Avenue, fresh cheese, imported meats, artisanal, Zagat-rated", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Casa Della Mozzarella - Best Mozzarella in New York City", description: "Voted Best Mozzarella in NYC for over a decade. Fresh artisanal cheese and imported Italian specialties. Visit us on Arthur Avenue.", type: "website", siteName: "Casa Della Mozzarella", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/fresh-mozzarella-cheese-soft-italian-cheeses-tomato-basil-olives-oil-rosemary-wooden-serving-board-light-wooden-surface-healthy-food-top-view-flat-lay_1150-44825.jpg", alt: "Fresh mozzarella being hand-pulled"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Casa Della Mozzarella - Best Mozzarella in NYC", description: "Zagat-rated artisanal Italian deli. Fresh mozzarella and imported meats on Arthur Avenue, Bronx.", images: ["http://img.b2bpic.net/free-photo/fresh-mozzarella-cheese-soft-italian-cheeses-tomato-basil-olives-oil-rosemary-wooden-serving-board-light-wooden-surface-healthy-food-top-view-flat-lay_1150-44825.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Casa Della Mozzarella - Best Mozzarella in NYC", description: "Zagat-rated Italian deli on Arthur Avenue in the Bronx. Premium mozzarella, imported meats, and artisanal Italian specialties since 1987."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Award, Heart, UtensilsCrossed, Star, Users, MapPin, Mail, Quote, History } from 'lucide-react';
|
||||
import { Award, Heart, UtensilsCrossed, Star, Users, MapPin, Mail, Quote, Clock } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -166,7 +166,7 @@ export default function LandingPage() {
|
||||
id: "phone", title: "(718) 364-3867", subtitle: "Call ahead for orders", category: "Contact", value: "Available"
|
||||
},
|
||||
{
|
||||
id: "hours", title: "Monday – Saturday", subtitle: "9:00 AM – 7:00 PM (Closed Sundays)", category: "Hours", value: "Year-Round"
|
||||
id: "hours", title: "Monday – Saturday", subtitle: "7:30 AM – 6:00 PM | Sunday 7:30 AM – 1:00 PM", category: "Hours", value: "Year-Round"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user