import Link from 'next/link' import Image from 'next/image' import { Breadcrumbs } from '@/components/breadcrumbs' import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Blog | Rocky Mountain Vending', description: 'Read our latest blog posts about vending machines, services, and industry insights from Rocky Mountain Vending.', alternates: { canonical: 'https://rockymountainvending.com/blog/', }, } const blogPosts = [ { title: 'How to Remove an Abandoned Vending Machine in Utah', description: 'A comprehensive guide for Utah businesses dealing with unwanted vending machines on their property.', slug: 'abandoned-vending-machines', date: 'March 20, 2025', image: '/images/abandoned-vending-machine-guide.jpg', imageAlt: 'Abandoned vending machine guide', }, { title: 'Rocky Mountain Vending Reviews & Testimonials', description: 'Read customer reviews and testimonials about our vending machine services in Utah.', slug: 'reviews', date: 'March 20, 2025', image: '/images/customer-reviews.jpg', imageAlt: 'Customer reviews and testimonials', }, { title: 'The Best Vending Machine Supplier in Salt Lake City, Utah', description: 'Why Rocky Mountain Vending is the top choice for vending machine services in Salt Lake City.', slug: 'best-vending-machine-supplier-in-salt-lake-city-utah', date: 'March 20, 2025', image: '/images/salt-lake-city-vending.jpg', imageAlt: 'Vending machine supplier in Salt Lake City', }, ] export default function BlogPage() { return ( <>

Blog

{blogPosts.map((post) => (
{post.imageAlt}

{post.title}

{post.description}

Read more
))}
) }