42 lines
980 B
TypeScript
42 lines
980 B
TypeScript
import { IAppartmentSphere } from "../types/apartmentSphere";
|
|
|
|
const spheres: IAppartmentSphere[] = [
|
|
{
|
|
id: "1",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-01.webp",
|
|
roomType: "room 1",
|
|
},
|
|
{
|
|
id: "2",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-02.webp",
|
|
roomType: "room 2",
|
|
},
|
|
{
|
|
id: "3",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-03.webp",
|
|
roomType: "room 3",
|
|
},
|
|
{
|
|
id: "4",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-04.webp",
|
|
roomType: "room 4",
|
|
},
|
|
{
|
|
id: "5",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-05.webp",
|
|
roomType: "room 5",
|
|
},
|
|
{
|
|
id: "6",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-06.webp",
|
|
roomType: "room 6",
|
|
},
|
|
{
|
|
id: "7",
|
|
sphereImage: "/images/virtual-tour/studio1/Studio1_w-12_13_sp-07.webp",
|
|
roomType: "room 7",
|
|
},
|
|
];
|
|
|
|
export { spheres };
|