From a6eda21093cd8b72018a8780fd9934841844633a Mon Sep 17 00:00:00 2001 From: ChitanandRamguttee Date: Tue, 3 Jun 2025 19:03:07 +0400 Subject: [PATCH] Create Raptor --- Raptor | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Raptor diff --git a/Raptor b/Raptor new file mode 100644 index 000000000..6ef04d805 --- /dev/null +++ b/Raptor @@ -0,0 +1,43 @@ +import React from "react"; +import { Card, CardContent } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { ShoppingCart } from "lucide-react"; + +const products = [ + { + id: 1, + name: "Sample Product", + description: "This is a sample product description.", + price: 1200, + image: "https://via.placeholder.com/300", + }, +]; + +export default function HomePage() { + return ( +
+
+

My Store

+

Beautiful modern e-commerce with MUR currency

+
+ +
+ {products.map((product) => ( + + {product.name} + +

{product.name}

+

{product.description}

+
+ MUR {product.price} + +
+
+
+ ))} +
+
+ ); +}