8 Commits

Author SHA1 Message Date
5d3b3e7ddf Update src/app/page.tsx 2026-03-07 12:08:08 +00:00
e2fccab6bb Update src/app/layout.tsx 2026-03-07 12:08:08 +00:00
d51c7da292 Merge version_2 into main
Merge version_2 into main
2026-03-07 12:02:21 +00:00
03ff8c6d5e Update src/app/page.tsx 2026-03-07 12:02:16 +00:00
33b6b02ecb Update src/app/layout.tsx 2026-03-07 12:02:15 +00:00
39edb46582 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:58:42 +00:00
ad26d60240 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:56:55 +00:00
dee1841bd7 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:55:29 +00:00
2 changed files with 17 additions and 35 deletions

View File

@@ -1,45 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } 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 halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "MilanoCafèDurante | Premium Coffee & Sandwiches Milano", description: "Discover MilanoCafèDurante - authentic Italian café in Milano with great coffee, fresh sandwiches, and pastries at affordable prices. Family-friendly, cozy atmosphere.", keywords: "coffee milano, sandwiches, italian café, cappuccino, espresso, aperitivo, casoretto", openGraph: { title: "MilanoCafèDurante", description: "Great sandwiches and coffee at the right price. Experience authentic Italian hospitality in the heart of Milano."};
title: "MilanoCafèDurante | Quality Coffee & Sandwiches", description: "Experience authentic Milan hospitality with premium coffee, fresh sandwiches, and pastries at the right price.", url: "https://milanocafedurante.it", siteName: "MilanoCafèDurante", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-coffee-portafilter-tamper_23-2148336770.jpg", alt: "MilanoCafèDurante - Premium Italian Coffee"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "MilanoCafèDurante | Milano's Favorite Café", description: "Quality coffee, fresh sandwiches, authentic hospitality. Visit us today!", images: ["http://img.b2bpic.net/free-photo/top-view-coffee-portafilter-tamper_23-2148336770.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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -156,14 +156,14 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Get In Touch" title="Get In Touch"
description="Visit us in person for the best experience, or reach out with any questions. We'd love to meet you!" description="Reserve a table, ask questions, or just say hello! You can reach us through multiple channels."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Your name", required: true }, { name: "name", type: "text", placeholder: "Your name", required: true },
{ name: "email", type: "email", placeholder: "Your email", required: true }, { name: "email", type: "email", placeholder: "Your email", required: true },
{ name: "phone", type: "tel", placeholder: "Phone number (optional)", required: false } { name: "phone", type: "tel", placeholder: "Phone: +39 02 1234 5678", required: false }
]} ]}
textarea={{ textarea={{
name: "message", placeholder: "Tell us about your visit or question...", rows: 5, name: "message", placeholder: "Tell us about your visit, make a reservation, or ask a question...", rows: 5,
required: false required: false
}} }}
useInvertedBackground={false} useInvertedBackground={false}
@@ -183,4 +183,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }