Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 06:47:09 +00:00
2 changed files with 8 additions and 45 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Premium Muslin Hijabs - Luxury Modest Fashion", description: "Discover handcrafted muslin hijabs combining traditional craftsmanship with contemporary elegance. Premium quality, sustainable, and beautifully designed.", keywords: "muslin hijab, premium hijab, modest fashion, luxury headscarf, ethical fashion, handcrafted hijab", openGraph: {
title: "Muslin & Grace - Premium Hijabs", description: "Experience luxury and elegance with our handcrafted muslin hijabs. Premium quality and timeless style.", type: "website", siteName: "Muslin & Grace", images: [
{
url: "http://img.b2bpic.net/free-photo/portrait-woman-beach-with-face-covered-by-veil_23-2149460624.jpg", alt: "Premium muslin hijab collection"
}
]
},
twitter: {
card: "summary_large_image", title: "Muslin & Grace - Premium Hijabs", description: "Luxury muslin hijabs crafted with tradition and style", images: ["http://img.b2bpic.net/free-photo/portrait-woman-beach-with-face-covered-by-veil_23-2149460624.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Muslin & Grace - Premium Hijabs", description: "Luxurious handcrafted muslin hijabs combining traditional craftsmanship with contemporary elegance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
imageAlt="Elegant muslin hijab showcase"
mediaAnimation="slide-up"
buttons={[
{ text: "Explore Collection", href: "#products" },
{ text: "Shop Premium Hijabs", href: "#products" },
{ text: "Learn More", href: "#about" }
]}
buttonAnimation="slide-up"