Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9344b3edac | |||
| c53c358aea | |||
| 939e5fd438 | |||
| df826ae523 | |||
| 450de3b713 | |||
| 3d0de7fd34 |
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mo's Beautiful - Professional Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup in Krugersdorp. 5-star salon in Munsieville. Book appointments on WhatsApp or call 071 643 3346.", keywords: "hair salon Krugersdorp, professional braids, weave installation, hair styling, makeup services, Munsieville salon", metadataBase: new URL("https://mosbeautiful.com"),
|
||||
alternates: {
|
||||
canonical: "https://mosbeautiful.com"},
|
||||
openGraph: {
|
||||
title: "Mo's Beautiful - Krugersdorp's Trusted Hair & Beauty Salon", description: "Professional hair and beauty services including braids, locs, weave installs, and makeup. Open until 8 PM daily.", url: "https://mosbeautiful.com", siteName: "Mo's Beautiful Salon", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg", alt: "Beautiful professional braids at Mo's Beautiful"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Mo's Beautiful - Professional Hair Salon", description: "Professional braids, locs, weave installs, and makeup in Krugersdorp.", images: [
|
||||
"http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Mo's Beautiful - Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup services in Krugersdorp"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -49,10 +49,10 @@ export default function LandingPage() {
|
||||
imagePosition="right"
|
||||
buttons={[
|
||||
{
|
||||
text: "📅 Book Appointment", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
text: "Book Appointment", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
},
|
||||
{
|
||||
text: "💬 Book on WhatsApp", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
text: "Chat on WhatsApp", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -254,7 +254,7 @@ export default function LandingPage() {
|
||||
imagePosition="left"
|
||||
buttons={[
|
||||
{
|
||||
text: "💬 Book on WhatsApp", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
text: "Chat on WhatsApp", href: "https://wa.me/27716433346?text=Hi%20Mo's%20Beautiful%20I%20would%20like%20to%20book%20a%20hair%20appointment"
|
||||
},
|
||||
{
|
||||
text: "📞 Call Now", href: "tel:+27716433346"
|
||||
|
||||
Reference in New Issue
Block a user