Merge version_1 into main #1
@@ -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"
|
||||
/>
|
||||
</div>
|
||||
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -119,7 +119,7 @@ export default function HomePage() {
|
||||
tag="Family-Owned Business"
|
||||
tagIcon={Heart}
|
||||
useInvertedBackground={false}
|
||||
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=1"
|
||||
imageAlt="Meir Food Machines warehouse and operations"
|
||||
/>
|
||||
</div>
|
||||
@@ -136,21 +136,21 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Professional Installation",
|
||||
description: "Expert setup and configuration of vending machines at your location. We handle everything from site assessment to final testing.",
|
||||
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=1",
|
||||
imageAlt: "Professional installation service",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Maintenance & Repairs",
|
||||
description: "Regular preventative maintenance and emergency repair services to minimize downtime. Our technicians are available for quick response.",
|
||||
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=1",
|
||||
imageAlt: "Maintenance and repair service",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Custom Solutions",
|
||||
description: "Tailored vending solutions for unique business environments. We work with you to find the perfect machine for your specific 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=2",
|
||||
imageAlt: "Custom vending solution",
|
||||
},
|
||||
]}
|
||||
@@ -172,7 +172,7 @@ export default function HomePage() {
|
||||
name: "Snack Machine Pro",
|
||||
price: "Starting at ₪2,500",
|
||||
variant: "Compact to Large",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg?_wi=1",
|
||||
imageAlt: "Professional snack vending machine",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
name: "Drink Machine Deluxe",
|
||||
price: "Starting at ₪3,200",
|
||||
variant: "Cold & Ambient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-woman-with-phone_23-2148815604.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-woman-with-phone_23-2148815604.jpg?_wi=1",
|
||||
imageAlt: "Premium drink vending machine",
|
||||
},
|
||||
{
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
name: "Smart Coffee Machine",
|
||||
price: "Starting at ₪4,500",
|
||||
variant: "Espresso & Cappuccino",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-loads-cups-coffee-machine_23-2148523033.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-loads-cups-coffee-machine_23-2148523033.jpg?_wi=1",
|
||||
imageAlt: "Advanced smart coffee vending machine",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function ProductsPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg?_wi=2"
|
||||
imageAlt="Professional snack vending machine"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -112,7 +112,7 @@ export default function ProductsPage() {
|
||||
name: "Snack Machine Pro",
|
||||
price: "Starting at ₪2,500",
|
||||
variant: "Compact to Large",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-market_23-2149148482.jpg?_wi=3",
|
||||
imageAlt: "Professional snack vending machine",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function ProductsPage() {
|
||||
name: "Drink Machine Deluxe",
|
||||
price: "Starting at ₪3,200",
|
||||
variant: "Cold & Ambient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-woman-with-phone_23-2148815604.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-woman-with-phone_23-2148815604.jpg?_wi=2",
|
||||
imageAlt: "Premium drink vending machine",
|
||||
},
|
||||
{
|
||||
@@ -128,7 +128,7 @@ export default function ProductsPage() {
|
||||
name: "Smart Coffee Machine",
|
||||
price: "Starting at ₪4,500",
|
||||
variant: "Espresso & Cappuccino",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-loads-cups-coffee-machine_23-2148523033.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-loads-cups-coffee-machine_23-2148523033.jpg?_wi=2",
|
||||
imageAlt: "Advanced smart coffee vending machine",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function ServicesPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
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=5"
|
||||
imageAlt: "Professional technician installing vending machine"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -111,21 +111,21 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Professional Installation",
|
||||
description: "Expert setup and configuration of vending machines at your location. We handle everything from site assessment to final testing.",
|
||||
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=6",
|
||||
imageAlt: "Professional installation service",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Maintenance & Repairs",
|
||||
description: "Regular preventative maintenance and emergency repair services to minimize downtime. Our technicians are available for quick response.",
|
||||
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=3",
|
||||
imageAlt: "Maintenance and repair service",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Custom Solutions",
|
||||
description: "Tailored vending solutions for unique business environments. We work with you to find the perfect machine for your specific 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=7",
|
||||
imageAlt: "Custom vending solution",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user