-
Notifications
You must be signed in to change notification settings - Fork 0
Update website: identity, press section, projects, and Previously reo… #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
thejackluo
wants to merge
1
commit into
main
Choose a base branch
from
claude/update-website-content-QSCzt
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+151
−37
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| --- | ||
| import BaseLayout from '../layouts/Base.astro'; | ||
| --- | ||
| <BaseLayout currentPage="press"> | ||
| <div slot="hero" class="landing-main container-fluid"> | ||
| <div class="row landing-row"> | ||
| <h2>Press</h2> | ||
| </div> | ||
| </div> | ||
|
|
||
| <section id="about"> | ||
| <div class="container-fluid"> | ||
| <div class="row"> | ||
| <div class="col-1"></div> | ||
| <div class="col-10"> | ||
| <div class="about-main container-fluid"> | ||
| <div class="about-main-text-body"> | ||
|
|
||
| <div class="row"> | ||
| <div class="col-sm-12"> | ||
| <div class="about-row"> | ||
| <p> | ||
| In February 2026, Jack was featured in AFP-syndicated coverage examining questions around | ||
| AI agent autonomy, consent, and safety. The story explored scenarios where AI agents | ||
| take unsanctioned actions on behalf of users, raising practical questions about trust, | ||
| authorization, and evaluation in agentic systems. This intersects directly with ongoing | ||
| work on Agent School: building reliable, test-driven, and observable AI automations. | ||
| </p> | ||
| </div> | ||
|
|
||
| <div class="about-row"> | ||
| <p><b>Coverage:</b></p> | ||
| <ul> | ||
| <li> | ||
| <a class="a-underline" href="https://www.straitstimes.com/asia/east-asia/when-machines-do-the-flirting-ai-agents-create-surprise-dating-accounts-for-humans">The Straits Times</a> - "When machines do the flirting: AI agents create surprise dating accounts for humans" (2026-02-13) | ||
| </li> | ||
| <li> | ||
| <a class="a-underline" href="https://m.economictimes.com/tech/artificial-intelligence/hot-bots-ai-agents-create-surprise-dating-accounts-for-humans/articleshow/128286633.cms">The Economic Times</a> - "Hot bots: AI agents create surprise dating accounts for humans" (2026-02-13) | ||
| </li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="about-row"> | ||
| <p><b>Related work:</b></p> | ||
| <ul> | ||
| <li> | ||
| <a class="a-underline" href="https://agentschool.io">Agent School</a> - certified, test-driven AI automations for legacy workflows (fast, cheap, observable, robust to UI changes) | ||
| </li> | ||
| <li> | ||
| <a class="a-underline" href="https://weaive.app">Weaive</a> - a lightweight personal growth and reflection app focused on consistency and clarity | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="col-1"></div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| </BaseLayout> | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Press page inherits incorrect home page title
Low Severity
press.astrouses<BaseLayout currentPage="press">without passing atitleprop.SEO.astrofalls back to its defaulttitle = 'Jack Luo - Home', so the press page will render<title>Jack Luo - Home</title>in the browser tab, bookmarks, and search engine results — rather than something like "Press - Jack Luo". Thewriting/[slug].astropage shows the correct pattern of supplying a page-specifictitleprop.