diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1fd9389..314fb37 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -86,7 +86,7 @@ export default function AboutPage() { description="Meir Food Machines was founded on a simple principle: businesses deserve reliable vending solutions backed by exceptional service. Over 15 years, we've grown from a small local operation to a trusted partner for hundreds of businesses across Israel. Our commitment to quality, innovation, and customer satisfaction remains unchanged. We believe in building long-term relationships with our clients by delivering consistent value and support." tag="Our Journey" useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/woman-looking-goodies-local-male-producer_23-2149110835.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-looking-goodies-local-male-producer_23-2149110835.jpg?_wi=2" imageAlt="Meir Food Machines company history" /> @@ -102,21 +102,21 @@ export default function AboutPage() { id: 1, title: "Reliability", description: "We stand behind every machine we provide. With regular maintenance and rapid response support, we ensure your vending operations never miss a beat.", - imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-choosing-color-car_1303-28140.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-choosing-color-car_1303-28140.jpg?_wi=3", imageAlt: "Reliability in service", }, { id: 2, title: "Customer Excellence", description: "Your satisfaction is our priority. From initial consultation to ongoing support, we're dedicated to exceeding your expectations with professional, responsive service.", - imageSrc: "http://img.b2bpic.net/free-photo/man-working-steel-fatory-equipment-steel-production_1303-22926.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-working-steel-fatory-equipment-steel-production_1303-22926.jpg?_wi=2", imageAlt: "Customer service excellence", }, { id: 3, title: "Innovation", description: "We continuously invest in the latest vending technology and practices. Our machines are modern, efficient, and designed to meet evolving business needs.", - imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-choosing-color-car_1303-28140.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-choosing-color-car_1303-28140.jpg?_wi=4", imageAlt: "Innovation in vending solutions", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..03ef065 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Meir Food Machines - Smart Vending Solutions", + description: "Premium vending machines for businesses, schools, and public spaces. Sales, rentals, and maintenance services. Get a quote today.", + keywords: "vending machines, food vending, snack machines, drink machines, coffee machines, Israel, business solutions", + metadataBase: new URL("https://meirfoodmachines.co.il"), + alternates: { + canonical: "https://meirfoodmachines.co.il", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Meir Food Machines - Smart Vending Solutions", + description: "Premium vending machines for businesses, schools, and public spaces. Sales, rentals, and comprehensive maintenance.", + url: "https://meirfoodmachines.co.il", + siteName: "Meir Food Machines", + type: "website", + images: [ + { + url: "https://meirfoodmachines.co.il/og-image.jpg", + alt: "Meir Food Machines - Vending Solutions", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Meir Food Machines - Smart Vending Solutions", + description: "Premium vending machines for businesses. Sales, rentals, and maintenance services.", + images: ["https://meirfoodmachines.co.il/twitter-image.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}