diff --git a/src/components/widgets/Features3.astro b/src/components/widgets/Features3.astro
new file mode 100644
index 0000000..843652f
--- /dev/null
+++ b/src/components/widgets/Features3.astro
@@ -0,0 +1,40 @@
+---
+import Headline from '~/components/ui/Headline.astro';
+import ItemGrid from '~/components/ui/ItemGrid.astro';
+import WidgetWrapper from '~/components/ui/WidgetWrapper.astro';
+import type { Features } from '~/types';
+
+const {
+ title = await Astro.slots.render('title'),
+ subtitle = await Astro.slots.render('subtitle'),
+ tagline = await Astro.slots.render('tagline'),
+ image,
+ items = [],
+ columns,
+
+ id,
+ isDark = false,
+ classes = {},
+ bg = await Astro.slots.render('bg'),
+} = Astro.props as Features;
+---
+
+
+
+
+
+ {image && image.src &&

}
+
+
+
+
diff --git a/src/pages/landing/startup.astro b/src/pages/landing/startup.astro
index df1c80e..c7d032d 100644
--- a/src/pages/landing/startup.astro
+++ b/src/pages/landing/startup.astro
@@ -9,6 +9,7 @@ import { headerData } from '~/navigation';
import Features2 from '~/components/widgets/Features2.astro';
import Features from '~/components/widgets/Features.astro';
import Stats from '~/components/widgets/Stats.astro';
+import Features3 from '~/components/widgets/Features3.astro';
const metadata = {
title: 'Startup Landing Page',
@@ -157,4 +158,54 @@ const metadata = {
waste more time! :P
+
+
+
+
+
+
+
+