import { servicesList } from "@/utils/Services.utils" import Link from "next/link" export default function MobileServices() { return ( <>
Our Services

We Help You Move Better &
Live Healthier

{ servicesList?.slice(0, 8)?.map((service, index) => { return (
{`${service.alt}`}

{service?.title}

View Service
{/*

Lorem ipsum dolor sit amet ctetur adipiscing

*/}
) }) }
View All Services
) }