Add Democratic fundraising platform.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
root
2026-05-16 00:47:44 +00:00
parent 89f9b8dc83
commit 391d90a754
141 changed files with 14989 additions and 914 deletions

View File

@@ -0,0 +1,22 @@
import type { Metadata } from "next";
import { PresidentialPoll } from "@/components/PresidentialPoll";
import { SiteFooter } from "@/components/SiteFooter";
import { creditTicker } from "@/lib/credits-brand";
import { appTitle } from "@/lib/public-env";
const TITLE = appTitle();
const T = creditTicker();
export const metadata: Metadata = {
title: `Supporter straw poll — ${TITLE}`,
description: `${TITLE} optional write-in engagement poll—aggregate tallies and ${T}-priced ballots. Not an official election; supporter engagement only.`,
};
export default function NextPresidentVotePage() {
return (
<main className="min-h-[70vh] border-b border-white/10 bg-gradient-to-b from-[#030712] via-[#061022] to-[#020617]">
<PresidentialPoll />
<SiteFooter />
</main>
);
}