diff --git a/public/sidebar.png b/public/sidebar.png new file mode 100644 index 0000000..b7f39c7 Binary files /dev/null and b/public/sidebar.png differ diff --git a/public/split-view.png b/public/split-view.png new file mode 100644 index 0000000..8c8a596 Binary files /dev/null and b/public/split-view.png differ diff --git a/src/components/feature.tsx b/src/components/feature.tsx new file mode 100644 index 0000000..de8d892 --- /dev/null +++ b/src/components/feature.tsx @@ -0,0 +1,28 @@ +import { ny } from "@/lib/utils"; + +export default function Feature({ + title, + description, + children, + color, +}: { + title: string; + description: string; + children: React.ReactNode; + color: string; +}) { + return ( +
{description}
+
+
+