first commit

This commit is contained in:
2026-08-13 18:36:31 +09:00
commit cee36bf12d
48 changed files with 4212 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recipe · Our Recipe Atlas</title>
<link rel="stylesheet" href="/css/app.css">
</head>
<body>
<header class="site-header">
<a class="brand" href="/">
<span class="brand-mark brand-mark-small" aria-hidden="true">ORA</span>
<span>Our Recipe Atlas</span>
</a>
<div class="profile">
<img id="profile-image" class="avatar" alt="" hidden>
<span id="profile-name"></span>
<button id="logout-button" class="button button-quiet" type="button" data-logout>로그아웃</button>
</div>
</header>
<main id="recipe-detail" class="detail-shell">
<p class="empty-state">레시피를 불러오는 중입니다.</p>
</main>
<button id="scroll-to-top" class="scroll-to-top" type="button"
aria-label="맨 위로 이동" title="맨 위로" hidden></button>
<div id="toast" class="toast" role="alert" hidden></div>
<script type="module" src="/js/recipe.js"></script>
</body>
</html>