diff --git a/packages/docs/src/assets/background.svg b/packages/docs/src/assets/background.svg deleted file mode 100644 index 4b2be0a..0000000 --- a/packages/docs/src/assets/background.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/packages/docs/src/components/DependencyStats.astro b/packages/docs/src/components/DependencyStats.astro index 175cbc6..4de7d2c 100644 --- a/packages/docs/src/components/DependencyStats.astro +++ b/packages/docs/src/components/DependencyStats.astro @@ -1,13 +1,11 @@ --- import { getCollection } from 'astro:content' -import background from '../assets/background.svg' const statsEntries = await getCollection('stats') const stats = statsEntries.map((entry) => entry.data) ---
-

Framework Tracker

@@ -23,15 +21,20 @@ const stats = statsEntries.map((entry) => entry.data) .

+

+ All stats are taken from the basic starter kits each meta-framework + provides based on their current docs. +

+

Dev Time Performance

- +
- - - + + + @@ -47,7 +50,6 @@ const stats = statsEntries.map((entry) => entry.data)
FrameworkProd DepsDev DepsFrameworkProd DepsDev Deps
-

Details

+
+ + + + + + + + + + + { + stats.map((framework) => ( + + + + + + + )) + } + +
FrameworkInstallCold BuildWarm Build
{framework.name}{(framework.installTimeMs / 1000).toFixed(2)}s{(framework.coldBuildTimeMs / 1000).toFixed(2)}s{(framework.warmBuildTimeMs / 1000).toFixed(2)}s
+
+

Runtime Performance

Coming soon...

@@ -82,21 +109,24 @@ const stats = statsEntries.map((entry) => entry.data)