Update src/app/layout.tsx

This commit is contained in:
2026-03-03 23:34:20 +00:00
parent 4d110363a5
commit 75d339db8e

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Archivo } 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";
const archivo = Archivo({
variable: "--font-archivo", 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: "Luxe Nails - Premium Nail Care & Design Services", description: "Experience luxury nail care at Luxe Nails. Expert technicians, premium treatments, and stunning designs. Book your appointment today.", keywords: "nail salon, manicure, pedicure, gel nails, acrylic nails, nail art, beauty", openGraph: {
title: "Luxe Nails - Premium Nail Salon", description: "Elevate your nail beauty with our expert technicians and premium services.", type: "website", url: "https://luxenails.com", siteName: "Luxe Nails", images: [
{
url: "http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg", alt: "Luxe Nails - Premium nail care"},
],
},
twitter: {
card: "summary_large_image", title: "Luxe Nails - Premium Nail Salon", description: "Experience luxury nail care with expert technicians.", images: ["http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg"],
},
};
title: "Luxe Nails - Premium Nail Salon", description: "Experience luxurious nail care with expert technicians at Luxe Nails. Premium treatments, stunning designs, and impeccable service."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}