Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 67e508eece | |||
| ade4c97702 | |||
| 872dd7c92f | |||
| 111c3975a2 | |||
| bf8cfd7bdc |
@@ -1,47 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope, DM_Sans } 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 manrope = Manrope({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Fash Salon | Professional Hair & Beauty Services in Mbale, Kenya", description: "Fash Salon offers premium hair braiding, styling, treatments, and beauty services in Mbale, Vihiga. Professional stylists, affordable prices, and a welcoming environment. Call 0724277792 today.", keywords: "salon Mbale, hair braiding Kenya, beauty services Vihiga, professional hairstylist, makeup artist, hair treatment", openGraph: {
|
title: "Fash Salon - Premium Beauty & Hair Care in Mbale", description: "Professional salon services in Mbale, Vihiga. Expert hairstyling, braiding, treatments, and beauty services by Beatrice Adudans."};
|
||||||
title: "Fash Salon | Beauty & Hair Care Excellence", description: "Transform your look with professional beauty and hair care services at Fash Salon in Mbale, Kenya.", url: "https://fashsalon.ke", siteName: "Fash Salon", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/fit-tanned-woman-romantic-beige-silk-dress-home-takes-photo-selfie-phone-mirror_343596-6457.jpg", alt: "Fash Salon professional beauty services"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Fash Salon | Professional Hair & Beauty Services", description: "Premium salon services in Mbale, Vihiga. Hair braiding, styling, treatments, and more.", images: ["http://img.b2bpic.net/free-psd/beauty-landing-page_23-2148903769.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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -75,8 +75,8 @@ export default function LandingPage() {
|
|||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardEight
|
<FeatureCardEight
|
||||||
tag="Our Expertise"
|
tag="Our Expertise"
|
||||||
title="Premium Salon Services"
|
title="500+ Happy Clients | 10+ Years Experience"
|
||||||
description="Discover our comprehensive range of beauty and hair care services designed to enhance your natural beauty and confidence."
|
description="Premium Salon Services - Discover our comprehensive range of beauty and hair care services designed to enhance your natural beauty and confidence."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
|
|||||||
Reference in New Issue
Block a user