Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09e52ebc97 | |||
| 0b1cd50d6c | |||
| ae9354a98c | |||
| 67e508eece | |||
| ade4c97702 | |||
| 872dd7c92f | |||
| 111c3975a2 | |||
| bf8cfd7bdc |
@@ -1,47 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Manrope, DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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 | 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,
|
||||
},
|
||||
};
|
||||
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."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -75,8 +75,8 @@ export default function LandingPage() {
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardEight
|
||||
tag="Our Expertise"
|
||||
title="Premium Salon Services"
|
||||
description="Discover our comprehensive range of beauty and hair care services designed to enhance your natural beauty and confidence."
|
||||
title="500+ Happy Clients | 10+ Years Experience"
|
||||
description="Premium Salon Services - Discover our comprehensive range of beauty and hair care services designed to enhance your natural beauty and confidence."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
@@ -97,7 +97,7 @@ export default function LandingPage() {
|
||||
title: "Wig Installation", description: "Expert wig fitting and styling for a natural, beautiful appearance", imageSrc: "http://img.b2bpic.net/free-photo/female-hairdresser-making-hairstyle-blonde-woman-beauty-salon_176420-4450.jpg", imageAlt: "Wig installation service"
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Learn More", href: "#" }]}
|
||||
buttons={[{ text: "Browse All Services", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
tagAnimation="slide-up"
|
||||
ariaLabel="Salon services section"
|
||||
|
||||
Reference in New Issue
Block a user