Merge version_2 into main #2

Merged
bender merged 4 commits from version_2 into main 2026-04-21 12:13:05 +00:00
4 changed files with 7 additions and 4 deletions

View File

@@ -33,6 +33,7 @@ export default function AdminPage() {
<div className="pt-32 pb-20">
<MetricCardEleven
animationType="slide-up"
useInvertedBackground={false}
title="Admin Dashboard"
description="Manage the election process, monitor users, and access analytics."
metrics={[

View File

@@ -44,7 +44,7 @@ export default function CandidatesPage() {
description="Review all registered candidates and their manifestos."
/>
</div>
<FooterSimple columns={[]} bottomLeftText="© 2024 University Election Portal" />
<FooterSimple columns={[]} bottomLeftText="© 2024 University Election Portal" bottomRightText="Candidate List" />
</ReactLenis>
</ThemeProvider>
);

View File

@@ -25,16 +25,16 @@ export default function ResultsPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Candidates", id: "/" },
{ name: "Candidates", id: "/candidates" },
{ name: "Live Results", id: "/results" },
{ name: "Admin Panel", id: "/admin" },
{ name: "FAQs", id: "/" },
]}
brandName="UniElection"
/>
<div className="pt-32 pb-20">
<MetricCardEleven
animationType="slide-up"
useInvertedBackground={false}
title="Election Results"
description="Live breakdown of the current vote tallies."
metrics={[

View File

@@ -36,12 +36,14 @@ export default function VotingPage() {
<ContactSplit
tag="Secure Portal"
title="Cast Your Vote"
background={{ variant: "plain" }}
useInvertedBackground={false}
description={submitted ? "Thank you, your vote has been recorded securely." : "Please enter your Student ID to access the voting ballot."}
onSubmit={() => setSubmitted(true)}
buttonText="Submit Vote"
/>
</div>
<FooterSimple columns={[]} bottomLeftText="© 2024 University Election Portal" />
<FooterSimple columns={[]} bottomLeftText="© 2024 University Election Portal" bottomRightText="Secure Voting Portal" />
</ReactLenis>
</ThemeProvider>
);