4 Commits

Author SHA1 Message Date
4bb209b2f9 Update src/app/page.tsx 2026-03-08 15:08:18 +00:00
a5c8731faa Update src/app/page.tsx 2026-03-08 15:07:34 +00:00
2fa4bfd5df Update src/app/layout.tsx 2026-03-08 15:07:33 +00:00
b1eb6f48de Merge version_1 into main
Merge version_1 into main
2026-03-08 15:05:31 +00:00
2 changed files with 16 additions and 40 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?_wi=1", imageAlt: "Chef monitoring cooking temperature"},
]}
buttonAnimation="blur-reveal"
/>
@@ -180,7 +183,7 @@ export default function MixLandingPage() {
{
id: "2", title: "Perfect for Beginners", quote: "As someone new to cooking, Mix made everything accessible. The step-by-step recipes and ingredient guides gave me the confidence to start cooking regularly.", name: "Marcus Johnson", role: "Cooking Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/messy-interior-full-clothing_23-2151298432.jpg", imageAlt: "Marcus Johnson"},
{
id: "3", title: "Saves Me Time", quote: "The meal planning feature is a lifesaver. I spend less time deciding what to cook and more time enjoying time with family around the dinner table.", name: "Elena Rodriguez", role: "Busy Parent", imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16134.jpg", imageAlt: "Elena Rodriguez"},
id: "3", title: "Saves Me Time", quote: "The meal planning feature is a lifesaver. I spend less time deciding what to cook and more time enjoying time with family around the dinner table.", name: "Elena Rodriguez", role: "Busy Parent", imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16134.jpg?_wi=2", imageAlt: "Elena Rodriguez"},
{
id: "4", title: "Elevated My Cooking", quote: "The cooking tips and techniques have made a real difference in my dishes. My family always asks what I'm doing differently, and it's all because of Mix.", name: "David Kim", role: "Home Chef", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-cherry-tomatoes-front-view_23-2149894872.jpg", imageAlt: "David Kim"},
]}