Merge version_2 into main #2

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

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Mix - Recipes, Cooking Tips & Meal Planning for Home Cooks", description: "Discover authentic recipes, master cooking techniques, plan nutritious meals, and learn about quality ingredients on Mix. Your trusted culinary guide for home cooking.", keywords: "recipes, cooking tips, meal planning, ingredient guides, home cooking, culinary techniques, food blog", openGraph: {
title: "Mix - Your Culinary Companion for Home Cooking", description: "Explore recipes, cooking tips, meal planning, and ingredient guides designed for home cooks of all levels.", siteName: "Mix", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-chef-squeezing-lemon-raw-fish-slices-knife-cutting-board-vegetables-wood-serving-board-kitchen-table_179666-44306.jpg", alt: "Mix - Recipes and Cooking Guide"},
],
},
twitter: {
card: "summary_large_image", title: "Mix - Recipes, Tips & Meal Planning", description: "Your trusted guide for home cooking success. Discover recipes, techniques, and meal planning ideas.", images: ["http://img.b2bpic.net/free-photo/front-view-chef-squeezing-lemon-raw-fish-slices-knife-cutting-board-vegetables-wood-serving-board-kitchen-table_179666-44306.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Mix - Your Culinary Companion", description: "Discover authentic recipes, master cooking techniques, plan nutritious meals, and learn about quality ingredients."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -99,6 +99,9 @@ export default function MixLandingPage() {
{
id: 2,
tag: "Flavor", title: "Seasoning & Spices", subtitle: "Enhance every dish with perfect seasoning", description: "Understand how to layer flavors, balance salt and acid, and use spices effectively. Learn the difference between fresh and dried spices, proper storage methods, and how to build complex flavor profiles in your cooking.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-organic-vegetables-table_23-2148538599.jpg", imageAlt: "Culinary spices and herbs collection"},
{
id: 3,
tag: "Heat Control", title: "Temperature & Timing", subtitle: "Perfect your cooking temperature management", description: "Master the art of temperature control across different cooking methods. Learn how to use thermometers, recognize doneness without tools, and adjust heat for optimal results. Proper temperature management is crucial for consistency and food safety.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16134.jpg", imageAlt: "Chef monitoring cooking temperature"},
]}
buttonAnimation="blur-reveal"
/>