update readme

recreate web
- now using tailwind instead of unocss
- created theme/design system
- created first components
- add first sections/content
This commit is contained in:
2023-06-25 13:31:24 +02:00
parent 5791b61a48
commit 518b819fe8
34 changed files with 1643 additions and 2091 deletions

View File

@@ -0,0 +1,26 @@
---
import CardFeature from "@/components/Cards/CardFeature.astro";
type Feature = {
title: string;
description: string;
};
const features: Array<Feature> = [
{
title: "Fast",
description:
"Thanks to rust with multithreading and skia we're really fast!",
},
];
---
<div class="flex flex-row">
{
features.map((feature) => (
<CardFeature
title={feature.title}
description={feature.description}
/>
))
}
</div>