Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 03ff8c6d5e | |||
| 33b6b02ecb | |||
| 39edb46582 | |||
| ad26d60240 | |||
| dee1841bd7 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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 by phone, visit us in person, or send a message below. We're here to welcome you. Hours: Mon-Fri 7am-8pm, Sat 8am-9pm, Sun 9am-7pm. Phone: +39 02 1234 5678. Address: Via Milano 45, 20100 Milano, Italy."
|
||||
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 }
|
||||
]}
|
||||
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}
|
||||
|
||||
Reference in New Issue
Block a user