Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-05 18:57:47 +00:00
2 changed files with 15 additions and 37 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Make Money Hats | Premium Headwear Collection", description: "Discover premium, stylish hats for every occasion. Elevate your fashion with Make Money Hats' exclusive collection of fedoras, beanies, and trending headwear.", keywords: "hats, fedora, beanie, fashion, headwear, accessories, premium, trendy", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Make Money Hats | Premium Headwear Collection", description: "Discover premium, stylish hats for every occasion. Elevate your fashion with exclusive designs.", type: "website", siteName: "Make Money Hats", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-with-long-blonde-hair-standing-with-her-back_1303-26557.jpg", alt: "Make Money Hats Premium Collection"},
],
},
twitter: {
card: "summary_large_image", title: "Make Money Hats | Premium Headwear", description: "Elevate your style with our premium hat collection", images: ["http://img.b2bpic.net/free-photo/woman-with-long-blonde-hair-standing-with-her-back_1303-26557.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -53,7 +53,7 @@ export default function LandingPage() {
imagePosition="right"
mediaAnimation="none"
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Shop Collection", href: "#products" },
{ text: "Explore Collection", href: "#features" }
]}
/>
@@ -206,4 +206,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}