Components
Component that creates a full-screen, scroll-controlled section for showcasing features, featuring a dynamic background gradient effect and visual progress indicators.
Loading preview...
// This is file of your component
// You can use any dependencies from npm; we import them automatically in package.json
import { useState } from "react";
import { cn } from "@/lib/utils";
import { FeaturesSection } from "@/components/ui/interactive-feature-section";
export default function DemoPage() {
return (
<main className="bg-black text-white">
<FeaturesSection />
</main>
);
}