Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 68ff20adb8 | |||
| bbf5d076a2 | |||
| 9b2e26bd1b | |||
| c74f93f488 | |||
| 5d17072416 |
@@ -1,57 +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 { Mulish } 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"],
|
||||||
});
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -216,7 +216,7 @@ export default function LandingPage() {
|
|||||||
ctaTitle="Visit Dream House Coffee Pool"
|
ctaTitle="Visit Dream House Coffee Pool"
|
||||||
ctaDescription="Located in beautiful Fes with convenient access and plenty of parking. Open daily from 9:00 AM."
|
ctaDescription="Located in beautiful Fes with convenient access and plenty of parking. Open daily from 9:00 AM."
|
||||||
ctaButton={{
|
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}
|
ctaIcon={MapPin}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #1c1c1c;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #6139e6;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #b3a8e8;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user