My Forms
Manage and preview all your forms in one place
Showing {filtered.length} of {dummyForms.length} forms
{filtered.length > 0 ? (No forms found matching your criteria.
"use client" import { useState } from "react" import { Plus, Search } from "lucide-react" import { dummyForms } from "@/lib/dummy-data" import { Navbar } from "@/components/shared/navbar" import { Footer } from "@/components/shared/footer" import { FormInput } from "@/components/shared/form-input" import { FormButton } from "@/components/shared/form-button" import { FormCard } from "@/components/forms/form-card" export default function FormsPage() { const [search, setSearch] = useState("") const filtered = dummyForms.filter((form) => { return ( form.title.toLowerCase().includes(search.toLowerCase()) || form.description.toLowerCase().includes(search.toLowerCase()) ) }) return (
Manage and preview all your forms in one place
Showing {filtered.length} of {dummyForms.length} forms
{filtered.length > 0 ? (No forms found matching your criteria.