Merge version_2 into main #4
@@ -1,58 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples from NVG LUX. Explore curated collections of premium perfumes at affordable prices. Find your signature scent today.", keywords: "fragrance samples, luxury perfume, premium cologne, fragrance discovery, perfume samples", metadataBase: new URL("https://nvgluxfragrances.com"),
|
||||
alternates: {
|
||||
canonical: "https://nvgluxfragrances.com"},
|
||||
openGraph: {
|
||||
title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples from the world's finest perfume houses. Experience premium quality at accessible prices.", url: "https://nvgluxfragrances.com", siteName: "NVG LUX Fragrances", type: "website", images: [
|
||||
{
|
||||
url: "https://nvgluxfragrances.com/og-image.jpg", alt: "NVG LUX Premium Fragrance Samples"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples at NVG LUX. Premium perfumes, curated collections, and your signature scent awaits.", images: ["https://nvgluxfragrances.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "NVG LUX - Premium Fragrance Samples", description: "Discover luxury fragrances risk-free with our curated sample sets."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar
|
||||
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Sparkles, Star, Crown, Heart, Gift, Send, Droplet, ShoppingBag, Settings, Package, Truck, CheckCircle } from "lucide-react";
|
||||
import { Sparkles, Star, Crown, Heart, Gift, Send, Droplet, ShoppingBag, Settings, Package, Truck, CheckCircle, Lock } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -42,9 +42,9 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
title="Discover Your Signature Fragrance"
|
||||
description="Explore NVG LUX curated collection of premium fragrance samples. Find the perfect scent that captures your essence."
|
||||
tag="Luxury Fragrances"
|
||||
tagIcon={Sparkles}
|
||||
description="Try luxury fragrances risk-free with our curated sample sets—no commitment required. Explore premium scents from the world's finest perfume houses and find your perfect match."
|
||||
tag="Risk-Free Luxury Sampling"
|
||||
tagIcon={Lock}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
|
||||
Reference in New Issue
Block a user