Add remaining samples, tooling, and local project assets

This commit is contained in:
2026-04-15 18:02:17 +09:00
parent 05d43a7999
commit 1ff6c6cbb2
862 changed files with 18979 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
---
const { frontmatter } = Astro.props;
---
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content={`0;url=${frontmatter.redirect}`}>
<title>{frontmatter.title}</title>
<link rel="canonical" href={frontmatter.redirect} />
</head>
<body>
<h1>{frontmatter.title}</h1>
<p>자동으로 이동되지 않으면 <a href={frontmatter.redirect}>이 링크</a>를 클릭해주세요.</p>
</body>
</html>