Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-04 08:10:28 +00:00

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "../styles/globals.css";
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Kamiyah's Hair, Lash & Nail Studio | Premium Beauty Services", description: "Discover luxe nails, lashes, and hair services at Kamiyah's Studio. Expert stylists, premium products, and stunning transformations. Book your appointment today.", keywords: "nail salon, lash extensions, hair salon, nail art, beauty services, manicure, pedicure, lash services, hair styling", metadataBase: new URL("https://kamiyahshair.co"),
alternates: {
canonical: "https://kamiyahshair.co"
},
openGraph: {
title: "Kamiyah's Hair, Lash & Nail Studio", description: "Premium beauty services - nails, lashes, and hair. Expert stylists ready to elevate your beauty.", url: "https://kamiyahshair.co", siteName: "Kamiyah's Studio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg", alt: "Kamiyah's Beauty Studio Services"
}
]
},
twitter: {
card: "summary_large_image", title: "Kamiyah's Hair, Lash & Nail Studio", description: "Premium beauty services - nails, lashes, and hair transformations", images: ["http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Kamiyah's Studio | Premium Beauty Services", description: "Luxe nails, lashes, and hair services crafted with precision and passion. Elevate your beauty at our premier studio."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}