feat: add feature request and projects voting components

This commit is contained in:
arraysid
2025-06-01 04:53:46 +07:00
parent c04ca8a29d
commit 522f283140
4 changed files with 295 additions and 3 deletions
@@ -0,0 +1,11 @@
import { FeatureRequestCTA } from './_components/feature-request-cta';
import ProjectsVote from './_components/projects-vote';
export default function Page() {
return (
<div className="p-4 md:p-6 bg-gray-50 min-h-screen">
<FeatureRequestCTA />
<ProjectsVote />
</div>
);
}