--- import CardFeature from "@/components/Cards/CardFeature.astro"; import Heading from "@/components/Heading.astro"; type Feature = { title: string; iconName: string; description: string; }; const features: Array = [ { title: "Fast", iconName: "Fast", description: "Thanks to rust with multithreading and skia we're really fast!", }, { title: "Extensible", iconName: "Extensible", description: "Modular structured and thanks to our dual language approach you even decide in which language you want to extend!", }, { title: "Community driven & Free", iconName: "Open", description: "The project is MIT licensed and we're open to new ideas for further development. Also since this product is not profit driven we won't screw you over!", }, ]; ---
Core Features & Values
{ features.map((feature) => ( )) }