Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions frontend/src/app/about/bill-process/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function BillProcessPage() {
return (
<section>
<h1>Bill Process</h1>
<p>This page will explain the bill process from proposal to final action.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/about/powers/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function PowersPage() {
return (
<section>
<h1>Legislative Powers</h1>
<p>This page will contain information about the powers of the Senate.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/about/staff/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function StaffPage() {
return (
<section>
<h1>Staff</h1>
<p>This page will contain information about Senate staff.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/admin/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function AdminPage() {
return (
<section>
<h1>Admin Dashboard</h1>
<p>This page is the admin dashboard placeholder.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/committees/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function CommitteeDetailPage() {
return (
<section>
<h1>Committee Details</h1>
<p>This page will display information for a specific committee by ID.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/committees/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function CommitteesPage() {
return (
<section>
<h1>Committees</h1>
<p>This page will contain information about Senate committees.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/elections/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function ElectionsPage() {
return (
<section>
<h1>Elections</h1>
<p>This page will contain information about Senate elections.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/funding/apply/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function FundingApplyPage() {
return (
<section>
<h1>Apply for Funding</h1>
<p>This page will explain how to apply for funding.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/funding/budget-process/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function FundingBudgetProcessPage() {
return (
<section>
<h1>Budget Process</h1>
<p>This page will describe the student government budget process.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/funding/budget/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function FundingBudgetPage() {
return (
<section>
<h1>Budget</h1>
<p>This page will contain budget information and references.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function LegislationDetailPage() {
return (
<section>
<h1>Legislation Details</h1>
<p>This page will display details for a specific legislation item by ID.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/disclosure/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function DisclosurePage() {
return (
<section>
<h1>Legislation Disclosure</h1>
<p>This page will contain disclosure information for legislation.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/nominations/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function NominationsPage() {
return (
<section>
<h1>Legislation Nominations</h1>
<p>This page will contain information about legislation nominations.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function LegislationPage() {
return (
<section>
<h1>Legislation Search</h1>
<p>This page will contain tools for searching legislation.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/recent/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function RecentLegislationPage() {
return (
<section>
<h1>Recent Legislation</h1>
<p>This page will contain recently introduced or updated legislation.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/legislation/rules/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function RulesPage() {
return (
<section>
<h1>Legislation Rules</h1>
<p>This page will contain information about Senate legislation rules.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/meetings/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function MeetingsPage() {
return (
<section>
<h1>Meetings</h1>
<p>This page will contain information about Senate meetings.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/senators/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function ContactPage() {
return (
<section>
<h1>Contact Senators</h1>
<p>This page will contain contact information for senators.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/senators/leadership/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function LeadershipPage() {
return (
<section>
<h1>Senate Leadership</h1>
<p>This page will contain information about current Senate leadership.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/senators/previous-leadership/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function PreviousLeadershipPage() {
return (
<section>
<h1>Previous Leadership</h1>
<p>This page will contain information about previous Senate leadership.</p>
</section>
);
}
8 changes: 8 additions & 0 deletions frontend/src/app/senators/roster/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function RosterPage() {
return (
<section>
<h1>Senators Roster</h1>
<p>This page will contain the full roster of senators.</p>
</section>
);
}
Loading