Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-03-08 23:59:28 +00:00

View File

@@ -1,49 +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: "Daje | Premium Organic Fruit Juices | Italian Quality", description: "Discover Daje, the premium fruit juice brand combining natural ingredients with artisanal craftsmanship. Fresh, organic, and elegantly crafted juices.", keywords: "organic juice, fresh juice, premium beverages, fruit juice, natural juice, healthy drinks", openGraph: {
title: "Daje | Premium Organic Fruit Juices", description: "Pure juice, pure elegance. Discover our handcrafted collection of organic fruit juices.", siteName: "Daje Juice", type: "website"},
twitter: {
card: "summary_large_image", title: "Daje | Premium Organic Fruit Juices", description: "Pure juice, pure elegance. Handcrafted organic fruit juices."},
robots: {
index: true,
follow: true,
},
};
title: "Daje - Premium Juices", description: "Discover pure, fresh fruit juices crafted with elegance"};
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: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}