diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f287ceb..2b839b3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-