Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-07 08:17:11 +00:00
2 changed files with 15 additions and 61 deletions

View File

@@ -1,73 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Shaman Khail Store - Premium Luxury E-Commerce",
description: "Discover curated premium quality products including fashion, accessories, electronics and more at Shaman Khail Store. Luxury shopping with trusted service and fast delivery.",
keywords: "luxury store, premium products, fashion, accessories, electronics, online shopping, high-end retail",
metadataBase: new URL("https://shamankhailstore.com"),
alternates: {
canonical: "https://shamankhailstore.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Shaman Khail Store - Premium Luxury Collection",
description: "Experience luxury shopping with premium quality products and exceptional service.",
siteName: "Shaman Khail Store",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/side-view-woman-choosing-clothes-shop_23-2147786803.jpg",
alt: "Shaman Khail Store Premium Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "Shaman Khail Store - Premium Luxury",
description: "Discover curated premium quality products with trusted service.",
images: ["http://img.b2bpic.net/free-photo/side-view-woman-choosing-clothes-shop_23-2147786803.jpg"],
},
};
title: "Shaman Khail Store - Premium Luxury Products", description: "Discover curated collections of premium luxury products with trusted service at Shaman Khail Store."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1435,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -85,7 +85,7 @@ export default function HomePage() {
tag="Luxury Collection"
tagAnimation="slide-up"
buttons={[
{ text: "Shop Now", href: "/shop" },
{ text: "Explore Luxury Collection", href: "/shop" },
{ text: "View Collections", href: "/categories" },
]}
buttonAnimation="slide-up"
@@ -262,4 +262,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}