Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ed63c660e1 | |||
| 423cd8c769 | |||
| afcf0ba939 | |||
| 77d7454c59 | |||
| 674a252d72 |
@@ -1,50 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Shop luxury moissanite earrings, cuban bracelets, tennis bracelets, and chains. Premium quality jewelry for streetwear and luxury enthusiasts.", keywords: "moissanite jewelry, luxury jewelry, diamond alternatives, cuban bracelet, tennis bracelet, moissanite earrings", openGraph: {
|
title: "Icehouse Supply - Premium Moissanite Jewelry", description: "Discover premium moissanite jewelry crafted for luxury enthusiasts. Lab-Certified • 30-Day Money Back • Free Shipping."};
|
||||||
title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Discover our curated collection of moissanite jewelry designed for the luxury enthusiast.", type: "website", siteName: "Icehouse Supply", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/portrait-european-woman-wedding-dress-wearing-necklace-ring_343596-847.jpg", alt: "Icehouse Supply moissanite jewelry"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Shop luxury moissanite jewelry for streetwear and designer enthusiasts.", images: ["http://img.b2bpic.net/free-photo/portrait-european-woman-wedding-dress-wearing-necklace-ring_343596-847.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
title="Premium Moissanite Jewelry for the Luxury Enthusiast"
|
title="Premium Moissanite Jewelry for the Luxury Enthusiast"
|
||||||
description="Discover our curated collection of earrings, cuban bracelets, tennis bracelets, and chains. Crafted for those who appreciate streetwear culture and designer aesthetics."
|
description="Lab-Certified • 30-Day Money Back • Free Shipping. Discover our curated collection of earrings, cuban bracelets, tennis bracelets, and chains. Crafted for those who appreciate streetwear culture and designer aesthetics."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user