import Link from "next/link" import Image from "next/image" import { Breadcrumbs } from "@/components/breadcrumbs" import { PublicInset, PublicPageHeader, PublicSurface, } from "@/components/public-surface" import type { Metadata } from "next" import { generateSEOMetadata } from "@/lib/seo" export const metadata: Metadata = generateSEOMetadata({ title: "Utah Vending Blog | Rocky Mountain Vending", description: "Read Rocky Mountain Vending guides, reviews, and Utah-focused vending insights for businesses and property managers.", path: "/blog", keywords: [ "Utah vending blog", "vending machine guides Utah", "Rocky Mountain Vending 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 ( <>
{blogPosts.map((post) => (
{post.imageAlt}

{post.title}

{post.description}

Read more
))}
) }