Skip to content

Add political stance essay page at /post/#4

Merged
spivanatalie64 merged 5 commits into
gh-pagesfrom
copilot/create-html-page-stance
Jul 11, 2026
Merged

Add political stance essay page at /post/#4
spivanatalie64 merged 5 commits into
gh-pagesfrom
copilot/create-html-page-stance

Conversation

Copilot AI commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

Creates a new standalone essay page at /post/index.html presenting a structured political/social commentary on systemic U.S. issues. The page was initially built with the wrong color scheme (Darren's green theme) and had a broken scroll animation, both of which are fixed here.

Page & Theme

  • New static HTML page at /post/index.html; no build step, self-contained
  • Colors corrected to match natalie.acreetionos.org: #0a0a0f bg, #c084fc/#7c3aed accent, rgba(255,255,255,0.06–0.08) cards/borders
  • Scroll animation fixed: elements use .reveal + .visible via IntersectionObserver instead of the previous broken pattern that toggled .fade-in off then back on, causing an opacity flicker

Content (9 sections)

  • Freemasonry & Government Structure — 16 named Masonic founders, structural overlap (lodge officers → executive branch), D.C. cornerstone history, DeMolay monotheism requirement
  • Rome Parallel — side-by-side comparison grid: currency debasement, tax inequality, civic disengagement, infrastructure decay, political self-dealing
  • Scale Problem — representation ratio degradation (1:30K constitutional design → 1:760K today), 1929 Apportionment Act, Wyoming/California Senate imbalance
  • Representation — STOCK Act enforcement failures, Gilens & Page (2014) Princeton oligarchy finding, lobbying revolving door
  • Social Security — OASDI mechanics, payroll tax regressivity ($168K cap), trust fund depletion math, what 83% means in real monthly dollars
  • Economy — housing zoning as manufactured scarcity ($400K median vs $80K income), ghost job data, productivity/wage gap since 1979, BRICS/petrodollar erosion
  • Healthcare — per-capita spend paradox, compliance-vs-cure reimbursement incentives, opioid crisis as regulatory capture case study
  • Religious Freedom — "Under God" (1954) / "In God We Trust" (1956) history, Muslim surveillance programs, atheist electability polling, 303 Creative inversion of the Establishment Clause
  • Conclusion — Declaration vs. Constitution on revolt rights, culture-war as political business model, concrete structural fixes (House expansion, earnings cap removal, revolving door closure)

@vercel

vercel Bot commented Jul 11, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
spivanatalie64-github-io Error Error Jul 11, 2026 10:54am

@spivanatalie64 spivanatalie64 marked this pull request as ready for review July 11, 2026 10:54
Copilot AI review requested due to automatic review settings July 11, 2026 10:54
@spivanatalie64 spivanatalie64 merged commit aa18c02 into gh-pages Jul 11, 2026
2 of 3 checks passed

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new standalone static essay page at /post/ with its own layout/theme styling and a scroll-reveal effect implemented via IntersectionObserver.

Changes:

  • Introduces new self-contained page at post/index.html (HTML + inline CSS + inline JS).
  • Implements a reveal-on-scroll animation for page sections.
  • Adds a TOC and structured section layout with reusable UI patterns (callouts, stat rows, comparison grid, tags).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread post/index.html
Comment on lines +29 to +31
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

Comment thread post/index.html
Comment on lines +271 to +273
/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
Comment thread post/index.html
Comment on lines +937 to +948
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.06 });

document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
Comment thread post/index.html
<meta name="description" content="An honest, evidence-based examination of the structural, financial, and political challenges facing the United States in 2026." />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="192x192" href="/favicon-192.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
Comment thread post/index.html
Comment on lines +46 to +54
/* Nav */
nav {
position: sticky; top: 0; z-index: 100;
background: rgba(10,10,15,0.92);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0 24px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants