Rocky_Mountain_Vending/lib/location-data.ts

826 lines
27 KiB
TypeScript

/**
* Location-specific data for local SEO pages
* Each location includes unique neighborhoods, anecdotes, and geo-coordinates
*/
export interface LocationData {
slug: string
city: string
state: string
stateAbbr: string
zipCode: string
latitude: string
longitude: string
neighborhoods: string[]
nearbyCities: string[]
chamberName: string
chamberUrl: string
cityWebsite: string
localLinks: Array<{
name: string
url: string
}>
anecdote: {
location: string
customer: string
solution: string
outcome: string
}
h2Variants: {
services: string
coverage: string
contact: string
payments: string
whyChoose: string
}
}
export const locationData: Record<string, LocationData> = {
"ogden-utah": {
slug: "ogden-utah",
city: "Ogden",
state: "Utah",
stateAbbr: "UT",
zipCode: "84401",
latitude: "41.2230",
longitude: "-111.9738",
neighborhoods: ["Historic 25th Street", "East Bench", "Downtown Ogden"],
nearbyCities: ["Layton", "Clearfield", "Clinton", "Syracuse"],
chamberName: "Ogden-Weber Chamber of Commerce",
chamberUrl: "https://www.ogdenweberchamber.com/",
cityWebsite: "https://www.ogdencity.com/",
localLinks: [
{
name: "Ogden City Official Website",
url: "https://www.ogdencity.com/",
},
{ name: "Visit Ogden Tourism Board", url: "https://www.visitogden.com/" },
],
anecdote: {
location: "Historic 25th Street",
customer: "fitness center",
solution: "machine stocked with protein bars, nuts, and bottled water",
outcome:
"members grab a quick snack between workouts, and the owner doesn't have to worry about restocking or repairs",
},
h2Variants: {
services: "Our Vending Services in Ogden",
coverage: "Ogden Coverage and Nearby Areas",
contact: "Hours and Contact Info",
payments: "Payments and Languages We Speak",
whyChoose: "Why Choose Rocky Mountain Vending in Ogden",
},
},
"provo-utah": {
slug: "provo-utah",
city: "Provo",
state: "Utah",
stateAbbr: "UT",
zipCode: "84601",
latitude: "40.2338",
longitude: "-111.6585",
neighborhoods: ["Downtown Provo", "East Bay", "Sunset"],
nearbyCities: ["Orem", "Springville", "Lindon", "Pleasant Grove"],
chamberName: "Provo-Orem Chamber of Commerce",
chamberUrl: "https://www.thechamber.org/",
cityWebsite: "https://www.provo.org/",
localLinks: [
{ name: "Provo City Official Website", url: "https://www.provo.org/" },
{
name: "Utah Valley Convention & Visitors Bureau",
url: "https://www.utahvalley.com/",
},
],
anecdote: {
location: "Downtown Provo",
customer: "dance studio",
solution:
"compact machine with granola bars, fruit snacks, and sports drinks",
outcome:
"kids love it, and the studio owner says it's one less thing to worry about",
},
h2Variants: {
services: "Vending Choices for Provo",
coverage: "Provo Service Area and Nearby Cities",
contact: "Contact and Business Hours",
payments: "Payment Options and Language",
whyChoose: "Why Provo Businesses Choose Us",
},
},
"sandy-utah": {
slug: "sandy-utah",
city: "Sandy",
state: "Utah",
stateAbbr: "UT",
zipCode: "84070",
latitude: "40.5649",
longitude: "-111.8389",
neighborhoods: ["The Cairns", "Crescent View", "Dimple Dell"],
nearbyCities: ["Draper", "Murray", "Midvale", "South Jordan"],
chamberName: "Sandy Area Chamber of Commerce",
chamberUrl: "https://sandychamber.com/",
cityWebsite: "https://www.sandy.utah.gov/",
localLinks: [
{
name: "Sandy City Official Website",
url: "https://www.sandy.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "The Cairns",
customer: "office building",
solution: "machine with mixed nuts, KIND bars, and coconut water",
outcome: "people grab what they need and get back to work",
},
h2Variants: {
services: "Sandy Vending Machine Services",
coverage: "Sandy Area Coverage",
contact: "Hours and How to Reach Us",
payments: "Payments We Accept and Language",
whyChoose: "Why Sandy Chooses Rocky Mountain Vending",
},
},
"draper-utah": {
slug: "draper-utah",
city: "Draper",
state: "Utah",
stateAbbr: "UT",
zipCode: "84020",
latitude: "40.5246",
longitude: "-111.8638",
neighborhoods: ["SunCrest", "Draper Historic District", "South Mountain"],
nearbyCities: ["Sandy", "Riverton", "South Jordan", "Herriman"],
chamberName: "Draper Area Chamber of Commerce",
chamberUrl: "https://draperchamber.com/",
cityWebsite: "https://www.draper.ut.us/",
localLinks: [
{
name: "Draper City Official Website",
url: "https://www.draper.ut.us/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "SunCrest",
customer: "car wash",
solution: "machine with chips, candy, and cold sodas",
outcome:
"customers grab a snack while waiting, and the car wash makes a little extra on the side",
},
h2Variants: {
services: "Our Services in Draper",
coverage: "Draper and Nearby Service Areas",
contact: "Hours and Contact Details",
payments: "Payment Methods and Language",
whyChoose: "Why Draper Trusts Us",
},
},
"layton-utah": {
slug: "layton-utah",
city: "Layton",
state: "Utah",
stateAbbr: "UT",
zipCode: "84041",
latitude: "41.0602",
longitude: "-111.9711",
neighborhoods: ["East Layton", "West Layton", "Layton Hills"],
nearbyCities: ["Ogden", "Clearfield", "Syracuse", "Clinton"],
chamberName: "Davis Chamber of Commerce",
chamberUrl: "https://davischamberofcommerce.com/",
cityWebsite: "https://www.laytoncity.org/",
localLinks: [
{
name: "Layton City Official Website",
url: "https://www.laytoncity.org/",
},
{ name: "Davis County Website", url: "https://www.daviscountyutah.gov/" },
],
anecdote: {
location: "East Layton",
customer: "community center",
solution: "machine with juice boxes, crackers, and fruit snacks",
outcome: "kids love it, and the staff doesn't have to manage inventory",
},
h2Variants: {
services: "Layton Vending Machine Services",
coverage: "Layton Coverage and Nearby Areas",
contact: "Business Hours and Contact Info",
payments: "Accepted Payments and Language",
whyChoose: "Why Layton Businesses Pick Us",
},
},
"murray-utah": {
slug: "murray-utah",
city: "Murray",
state: "Utah",
stateAbbr: "UT",
zipCode: "84107",
latitude: "40.6669",
longitude: "-111.8879",
neighborhoods: ["Fashion Place", "Murray Park", "Woodbury"],
nearbyCities: ["Midvale", "Sandy", "South Salt Lake", "Holladay"],
chamberName: "Murray Area Chamber of Commerce",
chamberUrl: "https://murraychamber.org/",
cityWebsite: "https://www.murray.utah.gov/",
localLinks: [
{
name: "Murray City Official Website",
url: "https://www.murray.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Fashion Place",
customer: "auto repair shop",
solution: "machine with beef jerky, crackers, and energy drinks",
outcome: "crew grabs what they need and keeps working",
},
h2Variants: {
services: "Refreshments for Murray",
coverage: "Murray Service Area",
contact: "Contact Us and Hours",
payments: "Payment Options and Language",
whyChoose: "Why Murray Picks Rocky Mountain Vending",
},
},
"clinton-utah": {
slug: "clinton-utah",
city: "Clinton",
state: "Utah",
stateAbbr: "UT",
zipCode: "84015",
latitude: "41.1391",
longitude: "-112.0505",
neighborhoods: ["Clinton City Park", "West Clinton", "East Clinton"],
nearbyCities: ["Layton", "Clearfield", "Syracuse", "Ogden"],
chamberName: "Davis Chamber of Commerce",
chamberUrl: "https://davischamberofcommerce.com/",
cityWebsite: "https://clintoncity.com/",
localLinks: [
{
name: "Clinton City Official Website",
url: "https://clintoncity.com/",
},
{ name: "Davis County Website", url: "https://www.daviscountyutah.gov/" },
],
anecdote: {
location: "Clinton City Park",
customer: "small office",
solution: "machine with granola bars, pretzels, and bottled water",
outcome: "everyone grabs what they need without leaving the building",
},
h2Variants: {
services: "Clinton Vending Services",
coverage: "Clinton and Nearby Areas",
contact: "Hours and Contact Information",
payments: "Payments and Language",
whyChoose: "Why Clinton Chooses Us",
},
},
"midvale-utah": {
slug: "midvale-utah",
city: "Midvale",
state: "Utah",
stateAbbr: "UT",
zipCode: "84047",
latitude: "40.6110",
longitude: "-111.9000",
neighborhoods: ["Fort Union", "Center Street", "Canyon Rim"],
nearbyCities: ["Murray", "Sandy", "West Jordan", "South Salt Lake"],
chamberName: "Midvale City Business Hub",
chamberUrl: "https://www.midvalecity.org/",
cityWebsite: "https://www.midvalecity.org/",
localLinks: [
{
name: "Midvale City Official Website",
url: "https://www.midvalecity.org/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Fort Union",
customer: "warehouse",
solution: "machine with chips, candy bars, and sodas",
outcome: "crew grabs what they need and gets back to work",
},
h2Variants: {
services: "Our Vending Services in Midvale",
coverage: "Midvale and Surrounding Areas",
contact: "Hours and How to Reach Us",
payments: "Payment Methods and Language",
whyChoose: "Why Midvale Trusts Rocky Mountain Vending",
},
},
"herriman-utah": {
slug: "herriman-utah",
city: "Herriman",
state: "Utah",
stateAbbr: "UT",
zipCode: "84096",
latitude: "40.5141",
longitude: "-112.0327",
neighborhoods: ["Herriman Towne Center", "Rosecrest", "Blackridge"],
nearbyCities: ["Riverton", "South Jordan", "Draper", "West Jordan"],
chamberName: "Herriman Area Chamber of Commerce",
chamberUrl: "https://www.herriman.org/",
cityWebsite: "https://www.herriman.org/",
localLinks: [
{
name: "Herriman City Official Website",
url: "https://www.herriman.org/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Herriman Towne Center",
customer: "gym",
solution: "machine with protein bars, trail mix, and sports drinks",
outcome: "members grab what they need on their way out",
},
h2Variants: {
services: "Herriman Vending Machine Services",
coverage: "Herriman Coverage and Nearby Cities",
contact: "Contact and Business Hours",
payments: "Payment Options and Language",
whyChoose: "Why Herriman Chooses Rocky Mountain Vending",
},
},
"holladay-utah": {
slug: "holladay-utah",
city: "Holladay",
state: "Utah",
stateAbbr: "UT",
zipCode: "84117",
latitude: "40.6688",
longitude: "-111.8244",
neighborhoods: ["Holladay Village", "Mount Olympus", "Cottonwood"],
nearbyCities: ["Murray", "Millcreek", "Sandy", "Cottonwood Heights"],
chamberName: "Holladay Chamber of Commerce",
chamberUrl: "https://www.holladaychamber.com/",
cityWebsite: "https://www.holladay.utah.gov/",
localLinks: [
{
name: "Holladay City Official Website",
url: "https://www.holladay.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Holladay Village",
customer: "office building",
solution: "machine with granola bars, crackers, and sparkling water",
outcome: "people grab what they need and get back to work",
},
h2Variants: {
services: "Vending Services We Offer in Holladay",
coverage: "Holladay and Nearby Service Areas",
contact: "Hours and Contact Details",
payments: "Accepted Payments and Language",
whyChoose: "Why Holladay Businesses Trust Us",
},
},
"riverton-utah": {
slug: "riverton-utah",
city: "Riverton",
state: "Utah",
stateAbbr: "UT",
zipCode: "84065",
latitude: "40.5219",
longitude: "-111.9391",
neighborhoods: [
"Riverton City Park",
"Mountain View Corridor",
"South Riverton",
],
nearbyCities: ["Herriman", "South Jordan", "Draper", "West Jordan"],
chamberName: "South Valley Chamber",
chamberUrl: "https://www.southvalleychamber.com/",
cityWebsite: "https://www.rivertoncity.com/",
localLinks: [
{
name: "Riverton City Official Website",
url: "https://www.rivertoncity.com/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Riverton City Park",
customer: "school",
solution: "machine with fruit cups, yogurt, and water bottles",
outcome:
"students love having better choices, and teachers appreciate that it's easy to manage",
},
h2Variants: {
services: "Riverton's Vending Solutions",
coverage: "Riverton and Surrounding Areas",
contact: "Business Hours and Contact",
payments: "Payment Methods and Language",
whyChoose: "Why Riverton Picks Rocky Mountain Vending",
},
},
"syracuse-utah": {
slug: "syracuse-utah",
city: "Syracuse",
state: "Utah",
stateAbbr: "UT",
zipCode: "84075",
latitude: "41.0894",
longitude: "-112.0647",
neighborhoods: [
"Syracuse Community Center",
"West Syracuse",
"Bluff Ridge",
],
nearbyCities: ["Layton", "Clearfield", "Clinton", "Ogden"],
chamberName: "Davis Chamber of Commerce",
chamberUrl: "https://davischamberofcommerce.com/",
cityWebsite: "https://www.syracuseut.com/",
localLinks: [
{
name: "Syracuse City Official Website",
url: "https://www.syracuseut.com/",
},
{ name: "Davis County Website", url: "https://www.daviscountyutah.gov/" },
],
anecdote: {
location: "Syracuse Community Center",
customer: "small business",
solution: "compact machine with chips, crackers, and cold drinks",
outcome:
"employees grab what they need during breaks, and the owner doesn't have to manage inventory",
},
h2Variants: {
services: "Syracuse Vending Services",
coverage: "Syracuse Coverage and Nearby Cities",
contact: "Contact Information and Hours",
payments: "Payment Options and Language",
whyChoose: "Why Syracuse Trusts Rocky Mountain Vending",
},
},
"millcreek-utah": {
slug: "millcreek-utah",
city: "Millcreek",
state: "Utah",
stateAbbr: "UT",
zipCode: "84106",
latitude: "40.6869",
longitude: "-111.8758",
neighborhoods: ["Canyon Rim", "East Millcreek", "Mount Olympus"],
nearbyCities: ["Holladay", "Murray", "Salt Lake City", "South Salt Lake"],
chamberName: "Millcreek Business Association",
chamberUrl: "https://millcreek.utah.gov/",
cityWebsite: "https://millcreek.utah.gov/",
localLinks: [
{
name: "Millcreek City Official Website",
url: "https://millcreek.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Canyon Rim",
customer: "community center",
solution: "machine with juice boxes, fruit snacks, and crackers",
outcome:
"kids grab something after activities, and the staff doesn't have to manage a snack bar",
},
h2Variants: {
services: "Millcreek Vending Machine Services",
coverage: "Millcreek Service Area",
contact: "Hours and How to Reach Us",
payments: "Payments We Accept and Language",
whyChoose: "Why Millcreek Chooses Us",
},
},
"clearfield-utah": {
slug: "clearfield-utah",
city: "Clearfield",
state: "Utah",
stateAbbr: "UT",
zipCode: "84015",
latitude: "41.1108",
longitude: "-112.0261",
neighborhoods: ["Hill Field", "North Clearfield", "Freeport Center"],
nearbyCities: ["Layton", "Syracuse", "Clinton", "Ogden"],
chamberName: "Davis Chamber of Commerce",
chamberUrl: "https://davischamberofcommerce.com/",
cityWebsite: "https://www.clearfieldcity.org/",
localLinks: [
{
name: "Clearfield City Official Website",
url: "https://www.clearfieldcity.org/",
},
{ name: "Davis County Website", url: "https://www.daviscountyutah.gov/" },
],
anecdote: {
location: "Hill Field",
customer: "office",
solution: "machine with chips, candy, and cold sodas",
outcome: "team grabs what they need without leaving the building",
},
h2Variants: {
services: "Our Vending Services in Clearfield",
coverage: "Clearfield and Nearby Service Areas",
contact: "Contact and Business Hours",
payments: "Payment Methods and Language",
whyChoose: "Why Clearfield Businesses Choose Us",
},
},
"west-jordan-utah": {
slug: "west-jordan-utah",
city: "West Jordan",
state: "Utah",
stateAbbr: "UT",
zipCode: "84088",
latitude: "40.6097",
longitude: "-111.9391",
neighborhoods: ["Jordan Landing", "Old Bingham", "Copper Hills"],
nearbyCities: ["South Jordan", "Riverton", "Midvale", "Sandy"],
chamberName: "West Jordan Chamber of Commerce",
chamberUrl: "https://wjchamber.com/",
cityWebsite: "https://www.wjordan.com/",
localLinks: [
{
name: "West Jordan City Official Website",
url: "https://www.wjordan.com/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Jordan Landing",
customer: "warehouse",
solution: "machine with protein bars, chips, and energy drinks",
outcome: "crew grabs what they need and gets back to work",
},
h2Variants: {
services: "West Jordan Vending Services",
coverage: "West Jordan Coverage and Nearby Areas",
contact: "Hours and Contact Information",
payments: "Accepted Payments and Language",
whyChoose: "Why West Jordan Chooses Rocky Mountain Vending",
},
},
"south-jordan-utah": {
slug: "south-jordan-utah",
city: "South Jordan",
state: "Utah",
stateAbbr: "UT",
zipCode: "84095",
latitude: "40.5621",
longitude: "-111.9296",
neighborhoods: ["Daybreak", "River Front", "South Jordan Heights"],
nearbyCities: ["Riverton", "West Jordan", "Sandy", "Draper"],
chamberName: "South Jordan Chamber of Commerce",
chamberUrl: "https://www.southjordanchamber.org/",
cityWebsite: "https://www.sjc.utah.gov/",
localLinks: [
{
name: "South Jordan City Official Website",
url: "https://www.sjc.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Daybreak",
customer: "gym",
solution: "machine with protein shakes, trail mix, and sports drinks",
outcome: "members grab what they need on their way out",
},
h2Variants: {
services: "South Jordan Vending Machine Services",
coverage: "South Jordan and Nearby Cities",
contact: "Business Hours and Contact Details",
payments: "Payment Options and Language",
whyChoose: "Why South Jordan Trusts Us",
},
},
"salt-lake-city-utah": {
slug: "salt-lake-city-utah",
city: "Salt Lake City",
state: "Utah",
stateAbbr: "UT",
zipCode: "84101",
latitude: "40.7608",
longitude: "-111.8910",
neighborhoods: ["The Avenues", "Sugar House", "Downtown Salt Lake"],
nearbyCities: [
"South Salt Lake",
"Millcreek",
"Murray",
"West Valley City",
],
chamberName: "Salt Lake Chamber",
chamberUrl: "https://slchamber.com/",
cityWebsite: "https://www.slc.gov/",
localLinks: [
{ name: "Salt Lake City Official Website", url: "https://www.slc.gov/" },
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "the Avenues",
customer: "office building",
solution: "machine with granola bars, chips, and cold drinks",
outcome: "people grab what they need without leaving the building",
},
h2Variants: {
services: "Salt Lake City Vending Solutions",
coverage: "Salt Lake City Service Area",
contact: "Contact Us and Business Hours",
payments: "Payment Methods and Language",
whyChoose: "Why Salt Lake City Picks Rocky Mountain Vending",
},
},
"south-salt-lake-utah": {
slug: "south-salt-lake-utah",
city: "South Salt Lake",
state: "Utah",
stateAbbr: "UT",
zipCode: "84115",
latitude: "40.7189",
longitude: "-111.8882",
neighborhoods: ["Millcreek", "Central Park", "Granite"],
nearbyCities: ["Salt Lake City", "Murray", "Midvale", "West Valley City"],
chamberName: "South Salt Lake Chamber of Commerce",
chamberUrl: "https://www.sslchamber.com/",
cityWebsite: "https://www.sslc.com/",
localLinks: [
{
name: "South Salt Lake City Official Website",
url: "https://www.sslc.com/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Millcreek",
customer: "manufacturing plant",
solution: "machine with beef jerky, crackers, and energy drinks",
outcome: "crew grabs what they need during breaks",
},
h2Variants: {
services: "Our Vending Services in South Salt Lake",
coverage: "South Salt Lake and Nearby Areas",
contact: "Hours and Contact Information",
payments: "Payments We Accept and Language",
whyChoose: "Why South Salt Lake Chooses Us",
},
},
"west-valley-city-utah": {
slug: "west-valley-city-utah",
city: "West Valley City",
state: "Utah",
stateAbbr: "UT",
zipCode: "84119",
latitude: "40.6916",
longitude: "-112.0011",
neighborhoods: ["Granger", "Hunter", "Kearns"],
nearbyCities: ["Salt Lake City", "West Jordan", "Taylorsville", "Magna"],
chamberName: "West Valley Chamber of Commerce",
chamberUrl: "https://www.westvalleychamber.com/",
cityWebsite: "https://www.wvc-ut.gov/",
localLinks: [
{
name: "West Valley City Official Website",
url: "https://www.wvc-ut.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Granger",
customer: "school",
solution: "machine with fruit cups, crackers, and juice boxes",
outcome:
"students have better choices now, and teachers don't have to manage a snack bar",
},
h2Variants: {
services: "West Valley City Vending Services",
coverage: "West Valley City Coverage and Nearby Areas",
contact: "Contact Details and Business Hours",
payments: "Payment Options and Language",
whyChoose: "Why West Valley City Trusts Rocky Mountain Vending",
},
},
"cottonwood-heights-utah": {
slug: "cottonwood-heights-utah",
city: "Cottonwood Heights",
state: "Utah",
stateAbbr: "UT",
zipCode: "84121",
latitude: "40.6197",
longitude: "-111.8105",
neighborhoods: ["Big Cottonwood Canyon", "Fort Union", "Canyon Rim"],
nearbyCities: ["Holladay", "Sandy", "Murray", "Millcreek"],
chamberName: "Cottonwood Heights Chamber of Commerce",
chamberUrl: "https://www.cottonwoodheightschamber.com/",
cityWebsite: "https://www.cottonwoodheights.utah.gov/",
localLinks: [
{
name: "Cottonwood Heights City Official Website",
url: "https://www.cottonwoodheights.utah.gov/",
},
{ name: "Visit Salt Lake", url: "https://www.visitsaltlake.com/" },
],
anecdote: {
location: "Big Cottonwood Canyon",
customer: "office",
solution: "machine with granola bars, chips, and cold drinks",
outcome: "people grab what they need without leaving the building",
},
h2Variants: {
services: "Cottonwood Heights Vending Machine Services",
coverage: "Cottonwood Heights and Nearby Service Areas",
contact: "Hours and How to Reach Us",
payments: "Payment Methods and Language",
whyChoose: "Why Cottonwood Heights Picks Us",
},
},
"bountiful-utah": {
slug: "bountiful-utah",
city: "Bountiful",
state: "Utah",
stateAbbr: "UT",
zipCode: "84010",
latitude: "40.8837",
longitude: "-111.8809",
neighborhoods: ["Downtown Bountiful", "South Davis", "West Bountiful"],
nearbyCities: [
"Centerville",
"Farmington",
"Woods Cross",
"North Salt Lake",
],
chamberName: "South Davis Chamber of Commerce",
chamberUrl: "https://www.southdavischamber.com/",
cityWebsite: "https://www.bountifulutah.gov/",
localLinks: [
{
name: "Bountiful City Official Website",
url: "https://www.bountifulutah.gov/",
},
{
name: "South Davis Chamber of Commerce",
url: "https://www.southdavischamber.com/",
},
],
anecdote: {
location: "Downtown Bountiful",
customer: "office building",
solution: "machine with healthy snacks, drinks, and protein options",
outcome:
"employees appreciate having convenient options right in the building",
},
h2Variants: {
services: "Bountiful Vending Machine Services",
coverage: "Bountiful and Nearby Areas",
contact: "Contact Information",
payments: "Payment Methods We Accept",
whyChoose: "Why Bountiful Businesses Choose Us",
},
},
"orem-utah": {
slug: "orem-utah",
city: "Orem",
state: "Utah",
stateAbbr: "UT",
zipCode: "84057",
latitude: "40.2968",
longitude: "-111.6946",
neighborhoods: ["East Orem", "North Orem", "Canyon Park"],
nearbyCities: ["Provo", "Lindon", "Pleasant Grove", "Vineyard"],
chamberName: "Provo-Orem Chamber of Commerce",
chamberUrl: "https://www.thechamber.org/",
cityWebsite: "https://www.orem.org/",
localLinks: [
{ name: "Orem City Official Website", url: "https://www.orem.org/" },
{
name: "Provo-Orem Chamber of Commerce",
url: "https://www.thechamber.org/",
},
],
anecdote: {
location: "Canyon Park",
customer: "high school",
solution: "combo machine with healthy snacks and sports drinks",
outcome: "students love having better choices during lunch breaks",
},
h2Variants: {
services: "Orem Vending Machine Services",
coverage: "Orem Service Area",
contact: "Contact Us",
payments: "Payment Options",
whyChoose: "Why Orem Chooses Rocky Mountain Vending",
},
},
}
export function getLocationBySlug(slug: string): LocationData | undefined {
return locationData[slug]
}
export function getAllLocationSlugs(): string[] {
return Object.keys(locationData)
}
export function getAllLocations(): LocationData[] {
return Object.values(locationData)
}