diff --git a/apps/web/src/app/(home)/_components/FeaturedSection.tsx b/apps/web/src/app/(home)/_components/FeaturedSection.tsx
new file mode 100644
index 0000000..3455315
--- /dev/null
+++ b/apps/web/src/app/(home)/_components/FeaturedSection.tsx
@@ -0,0 +1,134 @@
+import { ArrowRight, Code2, Shield, Zap } from "lucide-react";
+import React from "react";
+
+const Featured = () => {
+ return (
+ <>
+
+
+ {[
+ {
+ icon: Shield,
+ title: "Type-Safe by Default",
+ description:
+ "End-to-end type safety from database to frontend. Catch errors before they happen.",
+ },
+ {
+ icon: Zap,
+ title: "Lightning Fast",
+ description:
+ "Built on Bun's lightning-fast runtime with optimal configurations for performance.",
+ },
+ {
+ icon: Code2,
+ title: "Developer Experience",
+ description:
+ "Modern tooling and intuitive APIs make development a breeze.",
+ },
+ ].map((feature) => (
+
+
+
+
+ {feature.title}
+
+
{feature.description}
+
+ ))}
+
+
+
+
+
+
+
+ Write Better Code, Faster
+
+
+ Leverage the power of TypeScript with our carefully selected tools
+ and frameworks.
+
+
+
+
+
+ {[
+ {
+ title: "Type-Safe API Calls",
+ description:
+ "No more guessing API shapes. tRPC ensures type safety across your stack.",
+ },
+ {
+ title: "Database Type Safety",
+ description:
+ "Drizzle ORM provides type-safe database queries with great DX.",
+ },
+ {
+ title: "Modern Authentication",
+ description:
+ "Secure authentication with Better-Auth, built for modern web apps.",
+ },
+ ].map((item) => (
+
+ Carefully orchestrated stack of{" "}
+
+ cutting-edge technologies
+
+ , working in perfect harmony to deliver an exceptional development
+ experience.
+
+
+
+ End-to-end Type Safety
+
+
+ Lightning Fast Performance
+
+
+ Modern Development Tools
+
+