Joey889 commited on
Commit
2ef08d3
·
verified ·
1 Parent(s): eef9d61

Delete index.html.html

Browse files
Files changed (1) hide show
  1. index.html.html +0 -329
index.html.html DELETED
@@ -1,329 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-Hant-TW">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>酷比克機器人 | 蘋果樹發想科技有限公司</title>
7
- <meta name="description" content="酷比克機器人 (Cubik Robot) - 專為 STEAM 教育設計,結合 Scratch Pi 與電子積木,啟發孩子的無限創造力。">
8
- <style>
9
- :root {
10
- --primary-color: #4CAF50; /* Apple Green */
11
- --secondary-color: #2196F3; /* Tech Blue */
12
- --dark-bg: #333;
13
- --light-bg: #f9f9f9;
14
- --text-color: #333;
15
- }
16
-
17
- * {
18
- margin: 0;
19
- padding: 0;
20
- box-sizing: border-box;
21
- font-family: "Microsoft JhengHei", "Heiti TC", sans-serif;
22
- }
23
-
24
- body {
25
- line-height: 1.6;
26
- color: var(--text-color);
27
- background-color: #fff;
28
- }
29
-
30
- /* Navigation */
31
- nav {
32
- background: rgba(255, 255, 255, 0.95);
33
- box-shadow: 0 2px 5px rgba(0,0,0,0.1);
34
- position: fixed;
35
- width: 100%;
36
- top: 0;
37
- z-index: 1000;
38
- padding: 1rem 0;
39
- }
40
-
41
- .container {
42
- width: 90%;
43
- max-width: 1200px;
44
- margin: 0 auto;
45
- padding: 0 15px;
46
- }
47
-
48
- .nav-container {
49
- display: flex;
50
- justify-content: space-between;
51
- align-items: center;
52
- }
53
-
54
- .logo {
55
- font-size: 1.5rem;
56
- font-weight: bold;
57
- color: var(--primary-color);
58
- text-decoration: none;
59
- }
60
-
61
- .nav-links a {
62
- text-decoration: none;
63
- color: var(--text-color);
64
- margin-left: 20px;
65
- font-weight: 500;
66
- transition: color 0.3s;
67
- }
68
-
69
- .nav-links a:hover {
70
- color: var(--secondary-color);
71
- }
72
-
73
- /* Hero Section */
74
- #home {
75
- height: 100vh;
76
- background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
77
- display: flex;
78
- align-items: center;
79
- justify-content: center;
80
- text-align: center;
81
- padding-top: 60px;
82
- }
83
-
84
- .hero-content h1 {
85
- font-size: 3.5rem;
86
- margin-bottom: 1rem;
87
- color: var(--dark-bg);
88
- }
89
-
90
- .hero-content p {
91
- font-size: 1.5rem;
92
- color: #666;
93
- margin-bottom: 2rem;
94
- }
95
-
96
- .btn {
97
- display: inline-block;
98
- background-color: var(--primary-color);
99
- color: white;
100
- padding: 12px 30px;
101
- border-radius: 50px;
102
- text-decoration: none;
103
- font-size: 1.1rem;
104
- transition: transform 0.3s, background-color 0.3s;
105
- box-shadow: 0 4px 6px rgba(0,0,0,0.1);
106
- }
107
-
108
- .btn:hover {
109
- transform: translateY(-2px);
110
- background-color: #43a047;
111
- }
112
-
113
- /* Features Section */
114
- section {
115
- padding: 80px 0;
116
- }
117
-
118
- #features {
119
- background-color: var(--light-bg);
120
- }
121
-
122
- .section-title {
123
- text-align: center;
124
- font-size: 2.5rem;
125
- margin-bottom: 3rem;
126
- color: var(--dark-bg);
127
- }
128
-
129
- .features-grid {
130
- display: grid;
131
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
132
- gap: 30px;
133
- }
134
-
135
- .feature-card {
136
- background: white;
137
- padding: 30px;
138
- border-radius: 10px;
139
- box-shadow: 0 5px 15px rgba(0,0,0,0.05);
140
- text-align: center;
141
- transition: transform 0.3s;
142
- }
143
-
144
- .feature-card:hover {
145
- transform: translateY(-10px);
146
- }
147
-
148
- .feature-icon {
149
- font-size: 3rem;
150
- color: var(--secondary-color);
151
- margin-bottom: 20px;
152
- }
153
-
154
- /* About Section */
155
- #about {
156
- background-color: white;
157
- }
158
-
159
- .about-content {
160
- display: flex;
161
- flex-wrap: wrap;
162
- align-items: center;
163
- gap: 40px;
164
- }
165
-
166
- .about-text {
167
- flex: 1;
168
- min-width: 300px;
169
- }
170
-
171
- .about-text h3 {
172
- font-size: 1.8rem;
173
- margin-bottom: 1rem;
174
- color: var(--primary-color);
175
- }
176
-
177
- .about-image {
178
- flex: 1;
179
- min-width: 300px;
180
- background-color: #eee;
181
- height: 300px;
182
- border-radius: 10px;
183
- display: flex;
184
- align-items: center;
185
- justify-content: center;
186
- color: #aaa;
187
- font-size: 1.2rem;
188
- }
189
-
190
- /* Contact Section */
191
- #contact {
192
- background-color: var(--dark-bg);
193
- color: white;
194
- text-align: center;
195
- }
196
-
197
- #contact .section-title {
198
- color: white;
199
- }
200
-
201
- .contact-info {
202
- max-width: 600px;
203
- margin: 0 auto;
204
- font-size: 1.1rem;
205
- }
206
-
207
- .contact-item {
208
- margin-bottom: 20px;
209
- }
210
-
211
- footer {
212
- background-color: #222;
213
- color: #888;
214
- text-align: center;
215
- padding: 20px 0;
216
- font-size: 0.9rem;
217
- }
218
-
219
- /* Responsive */
220
- @media (max-width: 768px) {
221
- .hero-content h1 {
222
- font-size: 2.5rem;
223
- }
224
- .nav-links {
225
- display: none;
226
- }
227
- /* Add a simple hamburger menu logic if needed, omitted for single file simplicity */
228
- }
229
- </style>
230
- </head>
231
- <body>
232
-
233
- <!-- Navigation -->
234
- <nav>
235
- <div class="container nav-container">
236
- <a href="#" class="logo">酷比克機器人</a>
237
- <div class="nav-links">
238
- <a href="#home">首頁</a>
239
- <a href="#features">產品特色</a>
240
- <a href="#about">關於我們</a>
241
- <a href="#contact">聯絡資訊</a>
242
- </div>
243
- </div>
244
- </nav>
245
-
246
- <!-- Hero Section -->
247
- <section id="home">
248
- <div class="container hero-content">
249
- <h1>啟動未來的鑰匙<br>酷比克機器人</h1>
250
- <p>結合 ScratchPi 與 電子積木,讓孩子在玩樂中學習 AI 與 IoT</p>
251
- <a href="#contact" class="btn">立即洽詢</a>
252
- </div>
253
- </section>
254
-
255
- <!-- Features Section -->
256
- <section id="features">
257
- <div class="container">
258
- <h2 class="section-title">為什麼選擇酷比克?</h2>
259
- <div class="features-grid">
260
- <div class="feature-card">
261
- <div class="feature-icon">🧩</div>
262
- <h3>積木式組裝</h3>
263
- <p>相容於 Lego 積木結構,讓機器人的外型千變萬化,激發無限創意。</p>
264
- </div>
265
- <div class="feature-card">
266
- <div class="feature-icon">🖥️</div>
267
- <h3>圖形化編程</h3>
268
- <p>基於 Scratch 開發,用拖拉積木的方式寫程式,直觀易學,無縫接軌 Python。</p>
269
- </div>
270
- <div class="feature-card">
271
- <div class="feature-icon">🤖</div>
272
- <h3>AI & IoT 核心</h3>
273
- <p>搭載 Raspberry Pi (樹莓派) 運算核心,支援語音識別、影像辨識與物聯網應用。</p>
274
- </div>
275
- </div>
276
- </div>
277
- </section>
278
-
279
- <!-- About Section -->
280
- <section id="about">
281
- <div class="container">
282
- <h2 class="section-title">關於蘋果樹發想科技</h2>
283
- <div class="about-content">
284
- <div class="about-text">
285
- <h3>玩中學,學中玩 (Play to Learn)</h3>
286
- <p>蘋果樹發想科技有限公司致力於推廣 STEAM 教育。我們相信知識不應該只是死記硬背,而是在潛移默化的環境中「玩」出來的。</p>
287
- <br>
288
- <p>酷比克機器人 (Cubic) 是我們引進並在地化研發的核心產品,它不只是一個玩具,更是一套完整的程式教育解決方案,幫助台灣的孩子接軌國際 AI 趨勢。</p>
289
- </div>
290
- <div class="about-image">
291
- <img src="robot.jpg" alt=" " style="max-width:100%; border-radius:10px; box-shadow: 0 4px 8px rgba(0,0,0,0.2);">
292
-
293
- </div>
294
- </div>
295
- </div>
296
- </section>
297
-
298
- <!-- Contact Section -->
299
- <section id="contact">
300
- <div class="container">
301
- <h2 class="section-title">聯絡我們</h2>
302
- <div class="contact-info">
303
- <div class="contact-item">
304
- <strong>公司名稱:</strong>蘋果樹發想科技有限公司<br>
305
- (Apple Tree Idea Technology Co., Ltd.)
306
- </div>
307
- <div class="contact-item">
308
- <strong>電子郵件:</strong>cubicintw@gmail.com<br>
309
- (Phone: 0935-204332)
310
- </div>
311
- <div class="contact-item">
312
- <strong>地址:</strong>33060 桃園市桃園區國聖一街149號7樓
313
- </div>
314
- <div class="contact-item">
315
- <p>我們歡迎學校、教育機構合作洽談,共同推動程式教育。</p>
316
- </div>
317
- <br>
318
- <a href="mailto:cubicintw@gmail.com" class="btn" style="background-color:white; color:var(--dark-bg);">發送郵件</a>
319
- </div>
320
- </div>
321
- </section>
322
-
323
- <!-- Footer -->
324
- <footer>
325
- <p>&copy; 2024 蘋果��發想科技有限公司 All Rights Reserved.</p>
326
- </footer>
327
-
328
- </body>
329
- </html>