239 lines
8.3 KiB
HTML
239 lines
8.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Serene Path</title>
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg-color: #ffffff;
|
|
--secondary-bg: #f8f9fa;
|
|
--text-primary: #1a1c1e;
|
|
--text-secondary: #5f6368;
|
|
--accent-blue: #e8f0fe;
|
|
--border-color: #dadce0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Google Sans', Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: var(--secondary-bg);
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.app-shell {
|
|
width: 100%;
|
|
max-width: 480px;
|
|
background: var(--bg-color);
|
|
min-height: 100vh;
|
|
padding: 24px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.logo { font-weight: 500; font-size: 1.1rem; }
|
|
|
|
.greeting-container { margin-bottom: 32px; }
|
|
.label-caps {
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 1.5px;
|
|
color: var(--text-secondary);
|
|
text-transform: uppercase;
|
|
}
|
|
.greeting-text {
|
|
font-size: 1.5rem;
|
|
font-weight: 400;
|
|
margin-top: 8px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--text-secondary);
|
|
letter-spacing: 1px;
|
|
margin: 24px 0 12px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.focus-card {
|
|
background: var(--accent-blue);
|
|
border-radius: 24px;
|
|
padding: 24px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.focus-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
|
|
.focus-desc { font-size: 0.9rem; color: #444; line-height: 1.5; margin-bottom: 20px; }
|
|
|
|
.btn-group { display: flex; gap: 12px; }
|
|
.btn {
|
|
border-radius: 100px;
|
|
padding: 10px 20px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.btn-primary { background: var(--text-primary); color: white; }
|
|
.btn-secondary { background: white; border: 1px solid var(--border-color); }
|
|
|
|
.progress-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 0;
|
|
}
|
|
.percentage { font-size: 1.5rem; font-weight: 700; }
|
|
|
|
.habit-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 0;
|
|
}
|
|
.icon-done { color: #1e8e3e; }
|
|
.icon-todo { color: var(--border-color); }
|
|
|
|
.energy-grid {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
.energy-chip {
|
|
flex: 1;
|
|
padding: 12px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 16px;
|
|
text-align: center;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.management-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
}
|
|
.tool-card {
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 16px;
|
|
padding: 16px 8px;
|
|
text-align: center;
|
|
font-size: 0.7rem;
|
|
}
|
|
.tool-card .material-icons { margin-bottom: 8px; color: #1a73e8; }
|
|
|
|
.nav-bar {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 100%;
|
|
max-width: 480px;
|
|
background: white;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 12px 0;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
.nav-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: 0.7rem;
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
}
|
|
.nav-item.active { color: var(--text-primary); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app-shell">
|
|
<header>
|
|
<div class="logo">Serene Path</div>
|
|
<span class="material-icons">settings</span>
|
|
</header>
|
|
|
|
<div class="greeting-container">
|
|
<div class="label-caps">GOOD MORNING, ALEX</div>
|
|
<div class="greeting-text">Today is a fresh canvas. Take a deep breath.</div>
|
|
</div>
|
|
|
|
<div class="section-title">Today's Focus 9:30 AM — 11:00 AM</div>
|
|
<div class="focus-card">
|
|
<div class="focus-title">DEEP WORK: INTERFACE REFINEMENT</div>
|
|
<div class="focus-desc">Focus on the typography hierarchy and tonal layering transitions for the mobile navigation shell.</div>
|
|
<div class="btn-group">
|
|
<button class="btn btn-primary"><span class="material-icons">play_arrow</span> Continue Session</button>
|
|
<button class="btn btn-secondary">Reschedule</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section-title">Reading Progress</div>
|
|
<div class="progress-row">
|
|
<div>
|
|
<div style="font-weight: 700;">Building a Second Brain</div>
|
|
<div style="font-size: 0.85rem; color: var(--text-secondary);">Tiago Forte • 42 pages left</div>
|
|
</div>
|
|
<div class="percentage">65%</div>
|
|
</div>
|
|
|
|
<div class="section-title">KEYSTONE HABITS</div>
|
|
<div style="font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px;">2/3 Done</div>
|
|
<div class="habit-item">
|
|
<span class="material-icons icon-done">check_circle</span>
|
|
<span>Morning Meditation</span>
|
|
</div>
|
|
<div class="habit-item">
|
|
<span class="material-icons icon-done">check_circle</span>
|
|
<span>Deep Work Session</span>
|
|
</div>
|
|
<div class="habit-item">
|
|
<span class="material-icons icon-todo">radio_button_unchecked</span>
|
|
<span>20min Evening Walk</span>
|
|
</div>
|
|
|
|
<div class="section-title">ENERGY CHECK-IN</div>
|
|
<div style="font-size: 0.9rem;">How are you feeling right now? Listen to your body.</div>
|
|
<div class="energy-grid">
|
|
<div class="energy-chip">Drained</div>
|
|
<div class="energy-chip">Balanced</div>
|
|
<div class="energy-chip">Radiant</div>
|
|
</div>
|
|
|
|
<div class="section-header section-title">MANAGEMENT DECK</div>
|
|
<div class="management-grid">
|
|
<div class="tool-card"><span class="material-icons">ads_click</span><br>Google Ads</div>
|
|
<div class="tool-card"><span class="material-icons">social_leaderboard</span><br>Facebook</div>
|
|
<div class="tool-card"><span class="material-icons">analytics</span><br>Analytics</div>
|
|
<div class="tool-card"><span class="material-icons">mail</span><br>Inbox</div>
|
|
<div class="tool-card"><span class="material-icons">payments</span><br>Finance</div>
|
|
<div class="tool-card"><span class="material-icons">add</span><br>Add Tool</div>
|
|
</div>
|
|
|
|
<nav class="nav-bar">
|
|
<a href="#" class="nav-item active"><span class="material-icons">dashboard</span>Focus</a>
|
|
<a href="#" class="nav-item"><span class="material-icons">calendar_today</span>Plan</a>
|
|
<a href="#" class="nav-item"><span class="material-icons">smart_toy</span>AI</a>
|
|
<a href="#" class="nav-item"><span class="material-icons">auto_graph</span>Habits</a>
|
|
<a href="#" class="nav-item"><span class="material-icons">menu_book</span>Library</a>
|
|
</nav>
|
|
</div>
|
|
</body>
|
|
</html> |