Skip to content

Motorcycle Brands #3347

@Matthw416

Description

@Matthw416

// 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) => (

{brand.name}


{brand.description}



{brand.bikes.map((bike) => (


{bike.model}

{bike.model}




))}


))}

);
};

export default MotorcycleShowcase;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions