-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
// MotorcycleShowcase.tsx
import React from "react";
import { Card, CardContent } from "@/components/ui/card";
const motorcycleBrands = [
{
name: "Harley-Davidson",
description: "Америкийн алдартай cruiser мотоцикль үйлдвэрлэгч.",
bikes: [
{ model: "Street Glide", image: "https://example.com/harley-street-glide.jpg" },
{ model: "Road King", image: "https://example.com/harley-road-king.jpg" },
],
},
{
name: "Yamaha",
description: "Японы спорт, кросс болон аяллын мотоциклийн үйлдвэрлэгч.",
bikes: [
{ model: "YZF-R1", image: "https://example.com/yamaha-r1.jpg" },
{ model: "MT-07", image: "https://example.com/yamaha-mt07.jpg" },
],
},
{
name: "Ducati",
description: "Италийн өндөр гүйцэтгэлтэй спорт мотоцикль үйлдвэрлэгч.",
bikes: [
{ model: "Panigale V4", image: "https://example.com/ducati-panigale.jpg" },
{ model: "Diavel V4", image: "https://example.com/ducati-diavel.jpg" },
],
},
];
const MotorcycleShowcase = () => {
return (
Мотоциклийн Брендүүд ба Алдартай Загварууд
{motorcycleBrands.map((brand) => (
))}
);
};
export default MotorcycleShowcase;