2026-02-11 20:45:37 +00:00
|
|
|
import car from "@/public/assets/icons/service/car.svg";
|
|
|
|
|
import bus from "@/public/assets/icons/service/bus.svg";
|
|
|
|
|
import track from "@/public/assets/icons/service/track.svg";
|
2025-10-12 17:42:17 +00:00
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
import { StaticImageData } from "next/image";
|
2025-10-12 17:42:17 +00:00
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
export interface RoadCardProps {
|
|
|
|
|
icon: StaticImageData;
|
|
|
|
|
textKey: string;
|
|
|
|
|
}
|
2025-10-12 17:42:17 +00:00
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
export const roadCardData: RoadCardProps[] = [
|
|
|
|
|
{ icon: car, textKey: "services.byCar" },
|
|
|
|
|
{ icon: bus, textKey: "services.byBus" },
|
|
|
|
|
{ icon: track, textKey: "services.freight" },
|
2025-10-12 17:42:17 +00:00
|
|
|
];
|
|
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
import call from "@/public/assets/icons/service/call.svg";
|
|
|
|
|
import megaphone from "@/public/assets/icons/service/megaphone.svg";
|
|
|
|
|
import bag from "@/public/assets/icons/service/bag.svg";
|
2025-10-12 17:42:17 +00:00
|
|
|
|
|
|
|
|
export const contactCardData: RoadCardProps[] = [
|
2026-02-11 20:45:37 +00:00
|
|
|
{ icon: call, textKey: "services.callCentre" },
|
|
|
|
|
{ icon: bag, textKey: "services.serviceBureau" },
|
|
|
|
|
{ icon: megaphone, textKey: "services.advertising" },
|
2025-10-12 17:42:17 +00:00
|
|
|
];
|
|
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
import partner from "@/public/assets/icons/home/partner.svg";
|
2025-10-12 17:42:17 +00:00
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
export const partnersData: StaticImageData[] = [
|
|
|
|
|
partner,
|
|
|
|
|
partner,
|
|
|
|
|
partner,
|
|
|
|
|
partner,
|
|
|
|
|
partner,
|
|
|
|
|
];
|