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 ( +
+
+

{title}

+

{description}

+
+
+ {children} +
+
+ ); +} + diff --git a/src/components/features.tsx b/src/components/features.tsx index 63711a4..d974e9e 100644 --- a/src/components/features.tsx +++ b/src/components/features.tsx @@ -1,10 +1,33 @@ +import Feature from "./feature"; import TextReveal from "./ui/text-reveal"; + export default function Features() { return (
- TODO: Features here! + + Split Views + + + Split Views + + + <>TODO +
); }