Merge version_2 into main #4
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections from Lumière. Handcrafted diamonds, engagement rings, and timeless pieces since 1995.", keywords: "luxury jewellery, handcrafted jewelry, diamond rings, engagement rings, fine jewels, custom design", metadataBase: new URL("https://lumiere-jewels.com"),
|
||||
alternates: {
|
||||
canonical: "https://lumiere-jewels.com"},
|
||||
openGraph: {
|
||||
title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections. Handcrafted diamonds and timeless pieces.", url: "https://lumiere-jewels.com", siteName: "Lumière Jewellery", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg", alt: "Luxury jewellery collection"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections and timeless pieces.", images: ["http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Lumière - Luxury Jewellery", description: "Discover timeless elegance with our exquisite collection of luxury jewellery, handcrafted with precision and passion."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -173,6 +173,21 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
tagIcon={Mail}
|
||||
title="Ready to Find Your Perfect Piece?"
|
||||
description="Contact our expert jewellers today for consultations, custom designs, or to schedule a private viewing of our exclusive collections."
|
||||
buttons={[
|
||||
{ text: "Get Free Consultation", href: "mailto:info@lumiere-jewels.com" },
|
||||
{ text: "Contact Us", href: "tel:+1-800-JEWELS-1" },
|
||||
]}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="What Our Customers Say"
|
||||
@@ -195,21 +210,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
tagIcon={Mail}
|
||||
title="Ready to Find Your Perfect Piece?"
|
||||
description="Contact our expert jewellers today for consultations, custom designs, or to schedule a private viewing of our exclusive collections."
|
||||
buttons={[
|
||||
{ text: "Contact Us", href: "mailto:info@lumiere-jewels.com" },
|
||||
{ text: "Schedule Appointment", href: "tel:+1-800-JEWELS-1" },
|
||||
]}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
|
||||
Reference in New Issue
Block a user