Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d3b3e7ddf | |||
| e2fccab6bb | |||
| d51c7da292 | |||
| 03ff8c6d5e | |||
| 33b6b02ecb | |||
| 39edb46582 | |||
| ad26d60240 | |||
| dee1841bd7 |
@@ -1,44 +1,27 @@
|
|||||||
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={{
|
||||||
@@ -1407,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user