Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 04:18:18 +00:00
2 changed files with 9 additions and 45 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Ben & Jerry's | Premium Ice Cream with Purpose", description: "Handcrafted premium ice cream with a social mission. Explore our signature flavors, fair trade ingredients, and commitment to community impact since 1978.", keywords: "ice cream, premium dessert, fair trade, social responsibility, homemade ice cream", metadataBase: new URL("https://benjerrys.com"),
alternates: {
canonical: "https://benjerrys.com"
},
openGraph: {
title: "Ben & Jerry's | Premium Ice Cream with Purpose", description: "Celebrate with handcrafted ice cream that supports social and environmental causes.", siteName: "Ben & Jerry's", type: "website", url: "https://benjerrys.com", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-yogurt-parfait-decorated-with-cooki-crumbs-chocolate-chips-glass_140725-10135.jpg", alt: "Ben & Jerry's Premium Ice Cream"
}
]
},
twitter: {
card: "summary_large_image", title: "Ben & Jerry's | Premium Ice Cream", description: "Handcrafted ice cream with a social mission.", images: ["http://img.b2bpic.net/free-photo/close-up-yogurt-parfait-decorated-with-cooki-crumbs-chocolate-chips-glass_140725-10135.jpg"]
}
};
title: "Ben & Jerry's - Premium Ice Cream", description: "Handcrafted, premium ice cream with a social mission. Every scoop supports sustainable sourcing and community impact."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
title="Celebrate with Ben & Jerry's"
description="Handcrafted, premium ice cream with a social mission. Every scoop supports sustainable sourcing and community impact."
buttons={[
{ text: "Explore Flavors", href: "#products" },
{ text: "Shop Now", href: "#products" },
{ text: "Learn Our Story", href: "#about" }
]}
background={{ variant: "radial-gradient" }}
@@ -233,4 +233,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}