Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .agent/skills/workflows/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Task Finisher Workflow
description: Automate the Code Review -> Confirmation -> Git Commit pipeline.
triggers:
- /finish
- /done
- "/finish"
- "/done"
- "작업 완료"
- "마무리해줘"
---
Expand Down
21 changes: 0 additions & 21 deletions __mocks__/next-navigation.js

This file was deleted.

Binary file added public/favicon_io/android-icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/apple-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/apple-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions public/favicon_io/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/ms-icon-70x70.png"/>
<square150x150logo src="/ms-icon-150x150.png"/>
<square310x310logo src="/ms-icon-310x310.png"/>
<TileColor>#ffffff</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file added public/favicon_io/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/favicon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/favicon_io/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"My Website","short_name":"My Website","icons":[{"src":"/favicon-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-icon-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added public/favicon_io/ms-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/ms-icon-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/ms-icon-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon_io/ms-icon-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/app/[locale]/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ export default async function BlogPost({ params }: { params: Promise<{ slug: str
sizes="(max-width: 1024px) 100vw, 75vw"
className="object-cover"
priority
unoptimized={true}
/>
</div>
)}
Expand Down
20 changes: 20 additions & 0 deletions src/app/[locale]/tamago-privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default async function TamagoPrivacyPage() {
return (
<main className="min-h-screen bg-neutral-50 dark:bg-neutral-950 font-sans">
<div className="max-w-3xl mx-auto px-4 py-16 sm:px-6 lg:px-8">
Effective Date: March 19, 2026

1. Data Collection &quot;Tamago-bot&quot; respects your privacy. We do not collect, transmit, distribute, or sell your personal data or personally identifiable information (PII).

2. Data Usage The extension uses the chrome.storage.local API exclusively to save the state of your virtual pixel-art pet locally on your device. This saved data includes the pet&apos;s current life stage, hunger, mood, energy, and cleanliness stats. This data is required solely to keep the virtual pet persisting across your browser sessions.

3. Third-Party Sharing No data is ever sent to external servers, cloud services, or third parties. Your data never leaves your personal device.

4. Data Retention and Deletion The saved data remains on your local browser. If you wish to delete your data, you can simply uninstall the Tamago-bot extension from your Chrome browser, which will permanently clear all associated local storage data.

5. Contact If you have any questions or concerns regarding this Privacy Policy, please contact the developer at: [EMAIL_ADDRESS].
</div>
</main>
);
}

Binary file modified src/app/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions src/entities/post/ui/PostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export function PostCard({ post }: { post: BlogPost }) {
fill
sizes="(max-width: 640px) 100vw, (max-width: 1024px) 50vw, 33vw"
className="object-cover transition-transform duration-500 group-hover:scale-105"
unoptimized={true}
/>
) : (
<div className="w-full h-full flex items-center justify-center text-neutral-300 dark:text-neutral-700">
Expand Down
Loading