import { api } from "@/config/axios"; import { AboutResponse, ReviewsResponse, SchedulesResponse, } from "../types/Types"; export const getAbout = async (name: string): Promise => { const { data } = await api.get(`/public/shops/${name}`); return data; }; export const getReviews = async (name: string): Promise => { const { data } = await api.get( `/public/reviews/shop/${name}` ); return data; }; export const getSchedules = async ( name: string ): Promise => { const { data } = await api.get( `/public/schedules/shop/${name}` ); return data; };