This repository was archived by the owner on Nov 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 2.13 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./output.css">
<script type="module" src="./main.js"></script>
<title>CookingTimeline</title>
</head>
<body class="bg-gray-50 min-h-screen">
<header class="bg-gradient-to-r from-blue-600 to-blue-700 text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<h1 class="text-4xl font-bold flex items-center">
⏲
CookingTimeline
</h1>
<p class="text-blue-100 mt-2">料理のタイムラインを見える化して、効率的な調理をサポート</p>
</div>
</header>
<main class="container mx-auto px-4 py-8">
<!-- Home / Menu List -->
<section id="home-section" class="hidden">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-8">
<h2 class="text-3xl font-bold text-gray-800 mb-4">レシピを選択してください</h2>
<p class="text-gray-600">お好みのレシピを選んで、効率的な調理手順を確認しましょう</p>
<p class="text-gray-500 text-xs">注意:レシピはAIによって作成されています。</p>
</div>
<ul id="menu-list" class="grid gap-4 md:grid-cols-2 lg:grid-cols-3"></ul>
</div>
</section>
<!-- Recipe Detail -->
<section id="recipe-section" class="hidden">
<nav class="mb-6">
<a href="#" class="inline-flex items-center px-4 py-2 bg-white rounded-lg shadow-sm hover:shadow-md transition-shadow text-gray-700 hover:text-blue-600 border border-gray-200">
<svg class="w-4 h-4 mr-2" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd"></path>
</svg>
ホームに戻る
</a>
</nav>
<div id="recipe-view"></div>
</section>
<!-- Cooking Playback -->
<section id="cooking-section" class="hidden">
<div id="cooking-view"></div>
</section>
</main>
</body>
</html>