|
|
|
@@ -1,50 +1,20 @@
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
import "./globals.css";
|
|
|
|
import "./globals.css";
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const openSans = Open_Sans({
|
|
|
|
|
|
|
|
variable: "--font-open-sans", subsets: ["latin"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Elavate | Premium Styling Powder for Professional Makeup", description: "Discover Elavate luxury styling powder collection. Professional-grade cosmetics with buildable coverage, long-wearing formula, and flawless finish. Shop now.", keywords: "styling powder, luxury cosmetics, makeup powder, professional makeup, beauty products, vegan cosmetics, cruelty-free makeup", openGraph: {
|
|
|
|
title: "Elavate - Premium Styling Powder", description: "Elevate your style with our premium styling powder collection. Professional-grade cosmetics designed for flawless, long-lasting beauty."};
|
|
|
|
title: "Elavate | Premium Styling Powder", description: "Experience salon-quality beauty with Elavate's premium styling powder collection.", siteName: "Elavate", type: "website", images: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/woman-dealing-with-rosacea-applying-make-up-with-brush_23-2150248337.jpg", alt: "Elavate Premium Styling Powder Collection"},
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
twitter: {
|
|
|
|
|
|
|
|
card: "summary_large_image", title: "Elavate | Premium Styling Powder", description: "Professional-grade cosmetics for flawless beauty.", images: ["http://img.b2bpic.net/free-photo/woman-dealing-with-rosacea-applying-make-up-with-brush_23-2150248337.jpg"],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<Tag />
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: `
|
|
|
|
__html: `
|
|
|
|
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|