Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Modernizes the website landing page by replacing the previous static MDX content with modular “movie” sections and updating related docs/sponsor messaging.
Changes:
- Reworks
website/src/content/index.mdxto compose the homepage from new modular React “movie” components. - Adds new homepage sections (AOT compilation, benchmark table, AOT rationale, LLM function calling, sponsors) and a custom lightweight code highlighter.
- Updates docs/README sponsor distribution messaging and adjusts the docs build-status badge.
Reviewed changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| website/src/movies/HomeStrengthMovie.tsx | Replaces old section renderer with feature cards layout. |
| website/src/movies/HomeSponsorMovie.tsx | New sponsors section and donation distribution message. |
| website/src/movies/HomeLlmMovie.tsx | New LLM function-calling promo section with highlighted code snippet. |
| website/src/movies/HomeInnovationMovie.tsx | New AOT vs traditional comparison section. |
| website/src/movies/HomeHeroMovie.tsx | Rebuilds hero section layout and CTA buttons. |
| website/src/movies/HomeCompilationMovie.tsx | New before/after AOT compilation code panels. |
| website/src/movies/HomeBenchmarkMovie.tsx | New benchmark results table section. |
| website/src/content/index.mdx | Swaps static homepage content for the modular movie components. |
| website/src/content/docs/index.mdx | Updates badge link + revises llm namespace summary + sponsor text. |
| website/src/components/home/HomeLayout.tsx | Constrains children to avoid exceeding max width. |
| website/src/components/home/HomeCodeHighlight.tsx | Adds custom token-based code highlighting for homepage snippets. |
| README.md | Updates sponsor redistribution statement. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+41
to
+52
| Also, typia is re-distributing quarter of donations to{" "} | ||
| <Box | ||
| component="a" | ||
| href="https://github.com/nonara/ts-patch" | ||
| sx={{ | ||
| color: "rgb(0,180,255)", | ||
| textDecoration: "none", | ||
| "&:hover": { textDecoration: "underline" }, | ||
| }} | ||
| > | ||
| nonara/ts-patch | ||
| </Box> |
Comment on lines
+74
to
+75
| // lenient json parser + type corecion | ||
| export function parse<T>(str: string): T; |
|
|
||
| - [`nonara/ts-patch`](https://github.com/nonara/ts-patch) | ||
| - [`ryoppippi/unplugin-typia`](https://github.com/ryoppippi/unplugin-typia) | ||
| Also, `typia` is re-distributing quarter of donations to [`nonara/ts-patch`](https://github.com/nonara/ts-patch). |
|
|
||
| - [`nonara/ts-patch`](https://github.com/nonara/ts-patch) | ||
| - [`ryoppippi/unplugin-typia`](https://github.com/ryoppippi/unplugin-typia) | ||
| Also, `typia` is re-distributing quarter of donations to [`nonara/ts-patch`](https://github.com/nonara/ts-patch). |
| @@ -0,0 +1,182 @@ | |||
| "use client"; | |||
|
|
|||
| import React, { ReactNode } from "react"; | |||
| import GitHubIcon from "@mui/icons-material/GitHub"; | ||
| import MenuBookIcon from "@mui/icons-material/MenuBook"; | ||
| import { Button, Grid, Typography } from "@mui/material"; | ||
| import { Box, Button, Container, Grid, Typography } from "@mui/material"; |
Comment on lines
+21
to
+22
| if (result.success === false) | ||
| const feedback = LlmJson.stringify(result);`; |
| mb: 4, | ||
| }} | ||
| > | ||
| Also, typia is re-distributing quarter of donations to{" "} |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
This pull request introduces significant improvements to the website's homepage and documentation, focusing on modernizing the layout, enhancing visual presentation, and updating content for clarity and accuracy. The homepage now features modular movie components for key sections, improved code highlighting, and updated benchmark and compilation demonstrations. Documentation has also been updated to reflect more accurate information about build status and donation distribution.
Homepage modernization and visual enhancements:
website/src/content/index.mdxwith modular "movie" components (HomeHeroMovie,HomeCompilationMovie,HomeStrengthMovie,HomeInnovationMovie,HomeLlmMovie,HomeSponsorMovie) for a more dynamic and visually engaging layout.HomeCompilationMovie.tsx(demonstrates AOT compilation with before/after code panels),HomeBenchmarkMovie.tsx(shows benchmark results in a styled table), and improved code highlighting viaHomeCodeHighlight.tsx. [1] [2] [3]HomeLayout.tsxto ensure child elements do not exceed maximum width.Documentation content updates:
website/src/content/docs/index.mdxto reference the correct "test" workflow instead of "build".llmnamespace to clarify function descriptions and add new functions (structuredOutput,parse).Donation and sponsorship information:
README.mdand documentation to indicate that a quarter (rather than half) of donations are redistributed, and removed the list of core contributors. [1] [2]