Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ae32aa552 | |||
| 1cb5f237eb | |||
| 5ef7453fda | |||
| ea9c3f05fe | |||
| eb3bd475e2 |
@@ -1,74 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
|
||||||
variable: "--font-public-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ZenBook - Professional Massage Therapist Booking Platform",
|
title: "ZenBook - Find and Book Professional Massage Therapists", description: "Discover verified, certified massage therapists and wellness practitioners. Book your perfect session in minutes with secure payments and flexible scheduling."};
|
||||||
description: "Book verified massage therapists and wellness practitioners online. Secure payments, instant scheduling, and trusted reviews on ZenBook.",
|
|
||||||
keywords: "massage therapy booking, therapist directory, wellness, spa appointments, professional practitioners",
|
|
||||||
metadataBase: new URL("https://zenbook.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://zenbook.com",
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "ZenBook - Find & Book Massage Therapists",
|
|
||||||
description: "Discover verified massage therapists near you. Easy booking, secure payments, trusted reviews.",
|
|
||||||
url: "https://zenbook.com",
|
|
||||||
siteName: "ZenBook",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/young-woman-with-beauty-treatments_1098-3132.jpg",
|
|
||||||
alt: "Professional massage therapy booking platform",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "ZenBook - Professional Massage Therapist Booking",
|
|
||||||
description: "Find verified massage therapists with instant booking and secure payments.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/young-woman-with-beauty-treatments_1098-3132.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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1436,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ export default function HomePage() {
|
|||||||
imageSrc: "http://img.b2bpic.net/free-vector/smart-payment-wallet-isometric-landing-web-banner_107791-934.jpg?_wi=1", imageAlt: "Secure payment processing"},
|
imageSrc: "http://img.b2bpic.net/free-vector/smart-payment-wallet-isometric-landing-web-banner_107791-934.jpg?_wi=1", imageAlt: "Secure payment processing"},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Find a Massage Therapist", href: "#featured" },
|
{ text: "Book Your Session Now", href: "#featured" },
|
||||||
{ text: "Join as a Therapist", href: "#therapist-benefits" },
|
{ text: "Join as a Therapist", href: "#therapist-benefits" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -278,4 +278,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user