Skip to content

web-publisher: Update src/pages/LoveNote.astro #262

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
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
46 changes: 46 additions & 0 deletions src/pages/LoveNote.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,55 @@ if ('abcghijkl'.includes(firstChar)) {
}
---

<LoveNote
githubUsername="EricSimons"
message="This thing is so cool. I love that I can see myself typing live."
/>

<LoveNote
githubUsername="pogromistdev"
message="I ❤️ love web technologies"
/>

<LoveNote
githubUsername="ihasq"
message="I love this!"
/>

<LoveNote
githubUsername="Orime"
message="Best wishes!"
/>
<LoveNote
githubUsername="LukasErdmanski"
message="Awesome!"
/>

<div class="message">
<div class="comment">{Astro.props.message}</div>
<img alt="" crossorigin="anonymous" loading="lazy" src={`https://ghavatars.staticblitz.com/${username}.png?size=90`} />
<div class="from">Published with <span class="emoji">{emoji}</span> by <a href={`https://github.com/${username}`} target="_blank" rel="noreferrer noopener">{username}</a></div>
</div>
<LoveNote
githubUsername="EricSimons"
message="This thing is so cool. I love that I can see myself typing live."
/>

<LoveNote
githubUsername="pogromistdev"
message="I ❤️ love web technologies"
/>

<LoveNote
githubUsername="ihasq"
message="I love this!"
/>

<LoveNote
githubUsername="Orime"
message="Best wishes!"
/>
<LoveNote
githubUsername="LukasErdmanski"
message="Awesome!"
/>