import Image from "next/image";
export const IndustriesSectionSkeleton = () => (
{/* Header Skeleton */}
{/* Application Cards Grid Skeleton */}
{[1, 2, 3, 4, 5, 6].map((i) => (
))}
);
const applications = [
{
image: "/images/industries/cars-pickups-vans.jpg",
label: "CARS / PICK UPS / VANS",
},
{
image: "/images/industries/heavy-duty-trucks.jpg",
label: "HEAVY DUTY TRUCKS / BUSES",
},
{
image: "/images/industries/construction-equipment.jpg",
label: "CONSTRUCTION EQUIPMENT",
},
{
image: "/images/industries/motorcycles.jpg",
label: "MOTORCYCLES",
},
{
image: "/images/industries/industrial.jpg",
label: "INDUSTRIAL",
},
{
image: "/images/industries/marine.jpg",
label: "MARINE",
},
];
interface ApplicationCardProps {
image: string;
label: string;
}
const ApplicationCard = ({ image, label }: ApplicationCardProps) => (
);
export function IndustriesSection() {
return (
{/* Header */}
BOUNDLESS APPLICATIONS
Explore products built for a wide range of use cases.
{/* Application Cards Grid */}
{applications.map((app, index) => (
))}
);
}