Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-06 03:00:33 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Dream House Coffee Pool | Cozy Café in Fes, Morocco", description: "Experience exceptional coffee, warm atmosphere, and friendly service at Dream House Coffee Pool in Fes. Your perfect gathering place for family, friends, and great moments.", keywords: "café Fes, coffee shop Morocco, cozy café, Moroccan coffee, Dream House Coffee, breakfast Fes", metadataBase: new URL("https://dreamhousecoffeepool.ma"),
alternates: {
canonical: "https://dreamhousecoffeepool.ma"},
openGraph: {
title: "Dream House Coffee Pool - Your Cozy Coffee Escape", description: "Experience exceptional coffee and warm atmosphere in beautiful Fes, Morocco.", url: "https://dreamhousecoffeepool.ma", siteName: "Dream House Coffee Pool", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg", alt: "Dream House Coffee Pool interior"},
],
},
twitter: {
card: "summary_large_image", title: "Dream House Coffee Pool | Fes", description: "Cozy café with great coffee, warm atmosphere, and friendly staff in Fes, Morocco.", images: ["http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Dream House Coffee Pool | Cozy Café in Fes, Morocco", description: "Experience exceptional coffee, warm atmosphere, and friendly service at Dream House Coffee Pool in Fes. Your perfect gathering place for great moments."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -216,7 +216,7 @@ export default function LandingPage() {
ctaTitle="Visit Dream House Coffee Pool"
ctaDescription="Located in beautiful Fes with convenient access and plenty of parking. Open daily from 9:00 AM."
ctaButton={{
text: "Get Directions", href: "https://maps.google.com/?q=Dream+House+Coffee+Pool+Fes"
text: "Open in Maps", href: "https://maps.google.com/?q=Dream+House+Coffee+Pool+Fes"
}}
ctaIcon={MapPin}
useInvertedBackground={false}