3 Commits

Author SHA1 Message Date
54843b54f7 Update src/app/page.tsx 2026-03-05 04:10:27 +00:00
a798c5142a Update src/app/layout.tsx 2026-03-05 04:10:26 +00:00
fbb327c1e9 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:05:19 +00:00
2 changed files with 10 additions and 38 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
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 "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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: "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: { 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."};
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"],
},
};
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="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase'; 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() { export default function LandingPage() {
return ( 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: "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"
} }
]} ]}
/> />