मंगलवार, जुलाई 22, 2025

 

import { Card, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Progress } from "@/components/ui/progress"; const stockData = [ { name: "HDFC Bank", rating: "Add", upside: 8, sector: "Banking", commentary: "Strong Q1, but NII pressure remains." }, { name: "ICICI Bank", rating: "Buy", upside: 12, sector: "Banking", commentary: "Retail loan growth strong; healthy CASA." }, { name: "United Spirits (USL)", rating: "Buy above ₹1,620", upside: 10, sector: "FMCG/Alcohol", commentary: "Premium segment growth; key technical breakout above ₹1,620." }, { name: "Maruti Suzuki", rating: "Outperform", upside: 9, sector: "Auto", commentary: "SUV/EV segment expansion to drive valuation." }, { name: "Tata Motors", rating: "Hold", upside: 5, sector: "Auto", commentary: "JLR steady; domestic CVs need pickup." }, { name: "ITC Limited", rating: "Buy", upside: 20, sector: "FMCG", commentary: "Stable cigarette biz; FMCG margin expanding." }, { name: "SAIL", rating: "Neutral", upside: 6, sector: "PSU/Metals", commentary: "Undervalued but sensitive to policy risk." }, { name: "CESC", rating: "Buy", upside: 10, sector: "Power/Utilities", commentary: "Consistent performance; high dividend yield." } ]; export default function StockScorecard() { return (
{stockData.map((stock, index) => (

{stock.name}

{stock.rating}

Sector: {stock.sector}

{stock.commentary}

Upside Potential: {stock.upside}%

))}
); }

कोई टिप्पणी नहीं:

  import { Card, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Prog...