2025-06-01 04:53:46 +07:00
|
|
|
import { FeatureRequestCTA } from './_components/feature-request-cta';
|
|
|
|
|
import ProjectsVote from './_components/projects-vote';
|
|
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
2025-06-01 11:09:02 +07:00
|
|
|
<div className="pt-4 md:pt-6 pb-56 bg-gray-50 min-h-screen mx-4 lg:mx-0">
|
2025-06-01 04:53:46 +07:00
|
|
|
<FeatureRequestCTA />
|
|
|
|
|
<ProjectsVote />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|