package components
import (
	"fmt"
)
templ InfoCard(name string, metric int) {
	
		@infoCardInner(name, metric)
	
}
templ InfoCardLink(name string, metric int, link string) {
	
		@infoCardInner(name, metric)
	
}
templ infoCardInner(name string, metric int) {
	
		
			{ fmt.Sprint(metric) }
			{ name }
		 
	 
}