feat(website): add code-driven animated landing page - #9
Closed
Fadouse wants to merge 16 commits into
Closed
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
neko-obfuscator | c19864a | Jun 20 2026, 07:03 AM |
There was a problem hiding this comment.
Pull request overview
This PR replaces the existing Astro homepage with a new code-driven, high-contrast animated landing page that narrates the current NekoObfuscator JVM pass order and selective native translation pipeline. It introduces a new set of landing components, layered CSS stylesheets, and GSAP-powered motion with reduced-motion handling.
Changes:
- Replaced
index.astrohomepage composition with newcomponents/landing/*sections and added GSAP + ScrollTrigger interactions. - Introduced new landing-specific stylesheets for shell/layout, system section, native section, and responsive/reduced-motion behavior.
- Updated
BaseLayout.astrometadata handling (title/description/OG tags) and refreshedglobal.csstokens to match the new dark/high-contrast design.
Reviewed changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| website/src/styles/landing-system.css | New styles for the “Protection System” and pass-order pipeline sections. |
| website/src/styles/landing-shell.css | New page shell styling (nav, hero, cursor glow, scroll meter, hero visual styling). |
| website/src/styles/landing-responsive.css | Responsive breakpoints + prefers-reduced-motion CSS adjustments for landing page. |
| website/src/styles/landing-native.css | New styling for native translation route + closing/footer sections and keyframes. |
| website/src/styles/global.css | Replaces prior theme token set with a new dark palette + base reset/utility styles. |
| website/src/pages/index.astro | Switches homepage to new landing sections and adds GSAP/ScrollTrigger behavior. |
| website/src/layouts/BaseLayout.astro | Adds title/description props + OG/meta tags and simplifies layout wrapper. |
| website/src/components/landing/ProtectionSystem.astro | New landing section describing protection layers. |
| website/src/components/landing/PipelineSection.astro | New landing section listing the nine registered JVM passes in order. |
| website/src/components/landing/NativeSection.astro | New landing section visualizing selective native translation pipeline. |
| website/src/components/landing/LandingNav.astro | New fixed landing navigation header. |
| website/src/components/landing/LandingHero.astro | New hero section with animated machine/pipeline visual. |
| website/src/components/landing/LandingFooter.astro | New minimal footer with back-to-top link. |
| website/src/components/landing/ClosingSection.astro | New closing CTA with copy-to-clipboard command UI. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+200
to
+201
| initializePage(); | ||
| document.addEventListener('astro:page-load', initializePage); |
Comment on lines
+65
to
+66
| copyButton.setAttribute('data-copied', 'true'); | ||
| window.setTimeout(() => copyButton.removeAttribute('data-copied'), 1500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validation
npm run buildnode --check