Merge version_2 into main #2
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } 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 nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Radiance | Premium Luxury Skincare Collection", description: "Discover luxurious skincare infused with pure ingredients. Award-winning serums, creams, and treatments crafted for radiant, glowing skin.", keywords: "luxury skincare, premium beauty products, skincare serum, facial cream, natural ingredients, cruelty-free beauty", metadataBase: new URL("https://radiance-beauty.com"),
|
||||
alternates: {
|
||||
canonical: "https://radiance-beauty.com"},
|
||||
openGraph: {
|
||||
title: "Radiance | Premium Luxury Skincare", description: "Transform your skin with our award-winning collection of luxurious, ethically-made beauty products.", url: "https://radiance-beauty.com", siteName: "Radiance", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Radiance | Luxury Skincare", description: "Premium beauty products for your radiant glow"},
|
||||
};
|
||||
title: "Radiance - Premium Luxury Skincare", description: "Discover luxurious skincare crafted with pure ingredients. Transform your skin with our award-winning collection."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -209,7 +209,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Stay Connected"
|
||||
title="Discover New Launches & Exclusive Offers"
|
||||
description="Join our luxe community and be the first to know about new collections, beauty tips, and exclusive member events. Pure indulgence delivered to your inbox."
|
||||
description="Join our luxe community and get 10% off your first order. Be the first to know about new collections, beauty tips, and exclusive member events. Pure indulgence delivered to your inbox."
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
|
||||
Reference in New Issue
Block a user