Merge version_2 into main #2
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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: "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"],
|
||||
},
|
||||
};
|
||||
title: "Elavate - Premium Styling Powder", description: "Elevate your style with our premium styling powder collection. Professional-grade cosmetics designed for flawless, long-lasting beauty."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
||||
description="Elevate your style with our premium styling powder collection. Professional-grade cosmetics designed for flawless, long-lasting beauty."
|
||||
buttons={[
|
||||
{ text: "Shop Collection", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
{ text: "Explore Premium Collection", href: "#about" },
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user