Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58bc5bd221 | |||
| bf1a778a6e | |||
| 0012fae391 | |||
| b570a378cc | |||
| ed63c660e1 | |||
| 423cd8c769 | |||
| afcf0ba939 | |||
| 77d7454c59 | |||
| 674a252d72 |
@@ -1,50 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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 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
|
||||
}
|
||||
title: "Icehouse Supply - Premium Moissanite Jewelry", description: "Discover premium moissanite jewelry crafted for luxury enthusiasts. Lab-Certified • 30-Day Money Back • Free Shipping."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
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" }}
|
||||
avatars={[
|
||||
{
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #120a00e6;;
|
||||
--primary-cta: #ff8c42;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
--card: #f0f4f8;;
|
||||
--foreground: #1a2d42;;
|
||||
--primary-cta: #1e5a96;;
|
||||
--secondary-cta: #f0f4f8;;
|
||||
--accent: #8ba5bf;;
|
||||
--background-accent: #c7d9e8;; */
|
||||
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #120a00e6;;
|
||||
--primary-cta: #ff8c42;;
|
||||
--card: #f0f4f8;;
|
||||
--foreground: #1a2d42;;
|
||||
--primary-cta: #1e5a96;;
|
||||
--primary-cta-text: #ffffff;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta: #f0f4f8;;
|
||||
--secondary-cta-text: #120a00e6;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
--accent: #8ba5bf;;
|
||||
--background-accent: #c7d9e8;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user