diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3dc7bfb..039720b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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" } ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..fe1e498 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}