diff --git a/public/agent-example.webp b/public/agent-example.webp new file mode 100644 index 0000000..4fec4e3 Binary files /dev/null and b/public/agent-example.webp differ diff --git a/public/comment-example.webp b/public/comment-example.webp new file mode 100644 index 0000000..8c163f0 Binary files /dev/null and b/public/comment-example.webp differ diff --git a/public/list-example.webp b/public/list-example.webp new file mode 100644 index 0000000..b3770ae Binary files /dev/null and b/public/list-example.webp differ diff --git a/src/App.tsx b/src/App.tsx index 8b837ab..a2e0f14 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,31 +1,31 @@ import { - BookOpen, - ExternalLink, - FolderKanban, - Github, - MessageSquare, - Play, - Sparkles, - Upload, -} from "lucide-react"; -import { motion } from "motion/react"; -import type React from "react"; -import Footer from "./components/Footer"; -import InteractiveShowcase from "./components/InteractiveShowcase"; -import { ShumaiLogo } from "./components/ShumaiLogo"; + BookOpen, + ExternalLink, + FolderKanban, + Github, + MessageSquare, + Play, + Sparkles, + Upload, +} from 'lucide-react'; +import { motion } from 'motion/react'; +import type React from 'react'; +import Footer from './components/Footer'; +import InteractiveShowcase from './components/InteractiveShowcase'; +import { ShumaiLogo } from './components/ShumaiLogo'; export default function App() { // Scroll to workspace demo helper const scrollToDemo = (e: React.MouseEvent) => { e.preventDefault(); - const element = document.getElementById("demo-workspace"); + const element = document.getElementById('features-page'); if (element) { - element.scrollIntoView({ behavior: "smooth", block: "start" }); + element.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }; return ( -