Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2aab8b739 | |||
| 1994de9dfc | |||
| caabf0c007 | |||
| 555a7e90b5 | |||
| f6ccc232d8 | |||
| e1664dc60a | |||
| ab8314bf54 | |||
| 46a3e99e55 |
@@ -1,54 +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: "Essência - Premium Luxury Fragrances", description: "Discover exceptional luxury fragrances crafted with precision. Explore our signature collection of premium perfumes for the discerning customer.", keywords: "luxury perfume, fragrance, eau de parfum, premium scents, designer fragrances", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Essência - Premium Luxury Fragrances", description: "Experience luxury fragrances crafted with passion and precision.", type: "website", siteName: "Essência", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg", alt: "luxury perfume bottle elegant background"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Essência - Premium Luxury Fragrances", description: "Discover exceptional luxury fragrances crafted with precision.", images: ["http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Essência - Premium Fragrances", description: "Discover timeless elegance with Essência's luxury fragrances"};
|
||||
|
||||
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: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwent
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Sparkles, Heart, Award, Zap, Star, Crown } from "lucide-react";
|
||||
import { Sparkles, Heart, Award, Zap, Star, Crown, ShoppingCart } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -81,17 +81,21 @@ export default function LandingPage() {
|
||||
tagIcon={Award}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Midnight Garden", price: "$145", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232242.jpg?_wi=1", imageAlt: "Midnight Garden perfume bottle"},
|
||||
id: "1", name: "Midnight Garden", price: "$145", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232242.jpg?_wi=1", imageAlt: "Midnight Garden perfume bottle", onProductClick: () => console.log("Add to Cart: Midnight Garden"),
|
||||
},
|
||||
{
|
||||
id: "2", name: "Ocean Whisper", price: "$125", variant: "Eau de Toilette • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337702.jpg?_wi=1", imageAlt: "Ocean Whisper fragrance"},
|
||||
id: "2", name: "Ocean Whisper", price: "$125", variant: "Eau de Toilette • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337702.jpg?_wi=1", imageAlt: "Ocean Whisper fragrance", onProductClick: () => console.log("Add to Cart: Ocean Whisper"),
|
||||
},
|
||||
{
|
||||
id: "3", name: "Rose Velvet", price: "$155", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-vector/art-deco-style-wedding-invitation-template_23-2147944768.jpg?_wi=1", imageAlt: "Rose Velvet luxury fragrance"},
|
||||
id: "3", name: "Rose Velvet", price: "$155", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-vector/art-deco-style-wedding-invitation-template_23-2147944768.jpg?_wi=1", imageAlt: "Rose Velvet luxury fragrance", onProductClick: () => console.log("Add to Cart: Rose Velvet"),
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All", href: "#" }]}
|
||||
actionButtonClassName="flex items-center justify-center gap-2 bg-gradient-to-r from-primary-cta to-primary-cta/80 hover:from-primary-cta/90 hover:to-primary-cta text-white font-semibold py-2 px-4 rounded-lg transition-all duration-300 ease-out transform hover:scale-105 active:scale-95 shadow-lg hover:shadow-xl"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -126,16 +130,20 @@ export default function LandingPage() {
|
||||
tagIcon={Crown}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Amber Sensation", price: "$189", variant: "Eau de Parfum • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232242.jpg?_wi=2", imageAlt: "Amber Sensation limited edition"},
|
||||
id: "1", name: "Amber Sensation", price: "$189", variant: "Eau de Parfum • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232242.jpg?_wi=2", imageAlt: "Amber Sensation limited edition", onProductClick: () => console.log("Add to Cart: Amber Sensation"),
|
||||
},
|
||||
{
|
||||
id: "2", name: "Jasmine Dreams", price: "$175", variant: "Eau de Parfum • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337702.jpg?_wi=2", imageAlt: "Jasmine Dreams fragrance"},
|
||||
id: "2", name: "Jasmine Dreams", price: "$175", variant: "Eau de Parfum • 75ml", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337702.jpg?_wi=2", imageAlt: "Jasmine Dreams fragrance", onProductClick: () => console.log("Add to Cart: Jasmine Dreams"),
|
||||
},
|
||||
{
|
||||
id: "3", name: "Sandalwood Sanctuary", price: "$199", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-vector/art-deco-style-wedding-invitation-template_23-2147944768.jpg?_wi=2", imageAlt: "Sandalwood Sanctuary luxury"},
|
||||
id: "3", name: "Sandalwood Sanctuary", price: "$199", variant: "Eau de Parfum • 100ml", imageSrc: "http://img.b2bpic.net/free-vector/art-deco-style-wedding-invitation-template_23-2147944768.jpg?_wi=2", imageAlt: "Sandalwood Sanctuary luxury", onProductClick: () => console.log("Add to Cart: Sandalwood Sanctuary"),
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
actionButtonClassName="flex items-center justify-center gap-2 bg-gradient-to-r from-primary-cta to-primary-cta/80 hover:from-primary-cta/90 hover:to-primary-cta text-white font-semibold py-2 px-4 rounded-lg transition-all duration-300 ease-out transform hover:scale-105 active:scale-95 shadow-lg hover:shadow-xl"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -219,4 +227,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user