Merge version_1 into main #1
@@ -70,21 +70,21 @@ export default function AboutPage() {
|
||||
id: "quality",
|
||||
title: "Quality First",
|
||||
description: "We source only the freshest, highest-quality ingredients from trusted suppliers. Every meal meets our rigorous nutrition and taste standards.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg?_wi=2",
|
||||
imageAlt: "Fresh healthy meal bowls with vegetables and proteins"
|
||||
},
|
||||
{
|
||||
id: "science",
|
||||
title: "Science-Backed",
|
||||
description: "Our meal plans are developed by certified nutritionists and are grounded in the latest research in nutrition science and sustainable wellness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg?_wi=2",
|
||||
imageAlt: "Nutritionist working on healthy meal planning"
|
||||
},
|
||||
{
|
||||
id: "sustainability",
|
||||
title: "Sustainable Living",
|
||||
description: "We're committed to eco-friendly packaging and sustainable sourcing practices. Helping you live better also means protecting our planet.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg?_wi=2",
|
||||
imageAlt: "Sustainable meal prep with eco-friendly packaging"
|
||||
}
|
||||
]}
|
||||
@@ -109,7 +109,7 @@ export default function AboutPage() {
|
||||
quote: "I was overwhelmed with meal planning and never knew what to eat. NutriFlow took all that stress away. I lost 20 pounds and feel more confident than ever.",
|
||||
name: "Sarah Johnson",
|
||||
role: "Marketing Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-blonde-girl-is-raising-up-her-fisst-blue-background_176474-119362.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-blonde-girl-is-raising-up-her-fisst-blue-background_176474-119362.jpg?_wi=2",
|
||||
imageAlt: "happy woman professional portrait headshot"
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function AboutPage() {
|
||||
quote: "After years of yo-yo dieting, NutriFlow showed me that sustainable health is possible. The support from their nutrition team has been invaluable.",
|
||||
name: "Michael Chen",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg?_wi=2",
|
||||
imageAlt: "professional man portrait headshot confident"
|
||||
},
|
||||
{
|
||||
@@ -127,7 +127,7 @@ export default function AboutPage() {
|
||||
quote: "As an athlete, proper nutrition is crucial. NutriFlow's high-protein plans have helped me achieve my fitness goals faster than I thought possible.",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Fitness Coach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-was-that-easy-photo-gorgeous-blonde-woman-gym-her-weekend-time_146671-16565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-was-that-easy-photo-gorgeous-blonde-woman-gym-her-weekend-time_146671-16565.jpg?_wi=2",
|
||||
imageAlt: "fitness trainer woman portrait professional"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "NutriFlow - Healthy Meal Plans for Weight Loss & Fitness",
|
||||
description: "Transform your health with NutriFlow's science-backed meal plans. Fresh, delicious meals delivered to your door. Start your wellness journey today.",
|
||||
keywords: "healthy meal plans, weight loss meals, diet delivery, nutrition plans, meal prep, fitness meals, macro-balanced meals",
|
||||
metadataBase: new URL("https://nutriflow.com"),
|
||||
alternates: {
|
||||
canonical: "https://nutriflow.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "NutriFlow - Eat Healthy, Live Better",
|
||||
description: "Join 10,000+ customers who have transformed their health with NutriFlow's fresh, delicious meal plans.",
|
||||
url: "https://nutriflow.com",
|
||||
siteName: "NutriFlow",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg",
|
||||
alt: "NutriFlow healthy meal plans",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "NutriFlow - Eat Healthy, Live Better",
|
||||
description: "Fresh meal plans designed for your health goals. Delivered to your door.",
|
||||
images: ["http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -138,28 +138,28 @@ export default function MealPlansPage() {
|
||||
id: "weight-loss",
|
||||
title: "Sustainable Weight Loss",
|
||||
description: "Scientifically-designed plans that promote healthy, lasting weight loss without the hassle of calorie counting.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-healthy-food-with-measuring-tape-dumbbell-wooden-backdrop_23-2147882250.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-healthy-food-with-measuring-tape-dumbbell-wooden-backdrop_23-2147882250.jpg?_wi=2",
|
||||
imageAlt: "woman measuring weight scale fitness success",
|
||||
},
|
||||
{
|
||||
id: "convenience",
|
||||
title: "Ultimate Convenience",
|
||||
description: "Pre-portioned, ready-to-heat meals save you hours on meal prep and planning each week.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg?_wi=3",
|
||||
imageAlt: "meal prep boxes convenience time saving",
|
||||
},
|
||||
{
|
||||
id: "nutrition",
|
||||
title: "Expert Nutrition",
|
||||
description: "All meals crafted by certified nutritionists to ensure optimal macro and micronutrient balance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg?_wi=3",
|
||||
imageAlt: "nutritionist dietitian healthy meal planning",
|
||||
},
|
||||
{
|
||||
id: "taste",
|
||||
title: "Restaurant-Quality Taste",
|
||||
description: "Delicious, chef-prepared meals that don't taste like diet food. Health and flavor in every bite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13040.jpg?_wi=2",
|
||||
imageAlt: "delicious gourmet healthy meal plated",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -64,7 +64,7 @@ export default function HomePage() {
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/salmon-with-vegetables-rice-photography_53876-108182.jpg?_wi=1"
|
||||
imageAlt="Fresh healthy meals with vegetables and proteins"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -103,28 +103,28 @@ export default function HomePage() {
|
||||
id: "weight-loss",
|
||||
title: "Sustainable Weight Loss",
|
||||
description: "Scientifically-designed plans that promote healthy, lasting weight loss without the hassle of calorie counting.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-healthy-food-with-measuring-tape-dumbbell-wooden-backdrop_23-2147882250.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-healthy-food-with-measuring-tape-dumbbell-wooden-backdrop_23-2147882250.jpg?_wi=1",
|
||||
imageAlt: "woman measuring weight scale fitness success"
|
||||
},
|
||||
{
|
||||
id: "convenience",
|
||||
title: "Ultimate Convenience",
|
||||
description: "Pre-portioned, ready-to-heat meals save you hours on meal prep and planning each week.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-batch-food-cooked_23-2148765532.jpg?_wi=1",
|
||||
imageAlt: "meal prep boxes convenience time saving"
|
||||
},
|
||||
{
|
||||
id: "nutrition",
|
||||
title: "Expert Nutrition",
|
||||
description: "All meals crafted by certified nutritionists to ensure optimal macro and micronutrient balance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-working-together_23-2148461552.jpg?_wi=1",
|
||||
imageAlt: "nutritionist dietitian healthy meal planning"
|
||||
},
|
||||
{
|
||||
id: "taste",
|
||||
title: "Restaurant-Quality Taste",
|
||||
description: "Delicious, chef-prepared meals that don't taste like diet food. Health and flavor in every bite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13040.jpg?_wi=1",
|
||||
imageAlt: "delicious gourmet healthy meal plated"
|
||||
}
|
||||
]}
|
||||
@@ -227,7 +227,7 @@ export default function HomePage() {
|
||||
quote: "The meals are absolutely delicious, and I didn't feel like I was dieting. The convenience saved me so much time, and the weight just came off naturally.",
|
||||
name: "Sarah Johnson",
|
||||
role: "Marketing Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-blonde-girl-is-raising-up-her-fisst-blue-background_176474-119362.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-blonde-girl-is-raising-up-her-fisst-blue-background_176474-119362.jpg?_wi=1",
|
||||
imageAlt: "happy woman professional portrait headshot"
|
||||
},
|
||||
{
|
||||
@@ -236,7 +236,7 @@ export default function HomePage() {
|
||||
quote: "I've tried every diet out there. NutriFlow is different because the food actually tastes amazing. This is something I can stick with long-term.",
|
||||
name: "Michael Chen",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg?_wi=1",
|
||||
imageAlt: "professional man portrait headshot confident"
|
||||
},
|
||||
{
|
||||
@@ -245,7 +245,7 @@ export default function HomePage() {
|
||||
quote: "As someone who works out 5 days a week, having perfectly portioned meals that support my gains is a game-changer. My energy levels are through the roof.",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Fitness Coach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-was-that-easy-photo-gorgeous-blonde-woman-gym-her-weekend-time_146671-16565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-was-that-easy-photo-gorgeous-blonde-woman-gym-her-weekend-time_146671-16565.jpg?_wi=1",
|
||||
imageAlt: "fitness trainer woman portrait professional"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user