9 Commits

Author SHA1 Message Date
c70153c5a2 Merge version_3 into main
Merge version_3 into main
2026-03-07 12:08:12 +00:00
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 { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
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 | 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"],
},
};
title: "MilanoCafèDurante", description: "Great sandwiches and coffee at the right price. Experience authentic Italian hospitality in the heart of Milano."};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -156,14 +156,14 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
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={[
{ name: "name", type: "text", placeholder: "Your name", 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={{
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
}}
useInvertedBackground={false}
@@ -183,4 +183,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}