Feature Highlights

stable

Three-column Card grid. Icon → title → description → optional link. Use for value props, league benefits, or platform features.

Live Preview
Live Match Tracking
Real-time scores, stats, and minute-by-minute updates for every CPSL fixture across all competitions.
Club Management Portal
Submit rosters, manage transfers, upload documents, and track registration status — all in one place.
Performance Analytics
Season-long player and team statistics, heat maps, and form guides updated after every match.
tsx
<FeatureHighlights
  features={[
    { icon: <Clock />,  title: "Live Match Tracking",    body: "Real-time scores…",       linkLabel: "Learn more →" },
    { icon: <Users />,  title: "Club Management Portal", body: "Submit rosters…",         linkLabel: "Learn more →" },
    { icon: <Chart />,  title: "Performance Analytics",  body: "Season-long statistics…", linkLabel: "Learn more →" },
  ]}
/>
Props
PropTypeDefaultDescription
features*Feature[]Array of `{ icon, title, body, linkLabel? }` objects.