Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
417c2b177a |
200
assets/css/styles.css
Normal file
200
assets/css/styles.css
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
|
||||||
|
:root {
|
||||||
|
--primary-color: #89CFF0;
|
||||||
|
--secondary-color: #C3B1E1;
|
||||||
|
--background-color: #F5F5F5;
|
||||||
|
--surface-color: #FFFFFF;
|
||||||
|
--text-color: #333333;
|
||||||
|
--gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
||||||
|
--border-radius: 16px;
|
||||||
|
--spacing: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Poppins', sans-serif;
|
||||||
|
background-color: var(--background-color);
|
||||||
|
color: var(--text-color);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splash-screen {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: var(--gradient);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
z-index: 9999;
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 1s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splash-screen .logo {
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splash-screen .tagline {
|
||||||
|
font-size: 18px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding: calc(var(--spacing) * 2);
|
||||||
|
padding-bottom: 80px; /* Space for bottom nav */
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: calc(var(--spacing) * 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#dashboard {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||||
|
gap: calc(var(--spacing) * 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
background-color: var(--surface-color);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: calc(var(--spacing) * 2);
|
||||||
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
||||||
|
text-align: center;
|
||||||
|
transition: transform 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card:hover {
|
||||||
|
transform: translateY(-5px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card h2, .card h3 {
|
||||||
|
margin: 0 0 calc(var(--spacing)) 0;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.card p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card i {
|
||||||
|
font-size: 24px;
|
||||||
|
margin-bottom: var(--spacing);
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.wellness-score .score {
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.water .progress-bar {
|
||||||
|
width: 100%;
|
||||||
|
height: 10px;
|
||||||
|
background-color: #eee;
|
||||||
|
border-radius: 5px;
|
||||||
|
overflow: hidden;
|
||||||
|
margin: var(--spacing) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.water .progress {
|
||||||
|
height: 100%;
|
||||||
|
background: var(--gradient);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.quick-add {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
margin: calc(var(--spacing) * 3) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
background: var(--gradient);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: var(--spacing) calc(var(--spacing) * 2);
|
||||||
|
font-size: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: box-shadow 0.2s;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--spacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
box-shadow: 0 6px 16px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-nav {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
background-color: var(--surface-color);
|
||||||
|
box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
padding: var(--spacing) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-nav a {
|
||||||
|
color: #aaa;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 12px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-nav a.active {
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-nav a i {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tracker-dashboard {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||||
|
gap: calc(var(--spacing) * 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.meal-tracker ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meal-tracker li {
|
||||||
|
margin-bottom: calc(var(--spacing) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#tracker-dashboard .btn-small {
|
||||||
|
padding: calc(var(--spacing) / 2) var(--spacing);
|
||||||
|
margin: 0 calc(var(--spacing) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#tracker-dashboard input[type="text"] {
|
||||||
|
width: calc(100% - 20px);
|
||||||
|
padding: 8px 10px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-top: var(--spacing);
|
||||||
|
}
|
||||||
81
assets/js/app.js
Normal file
81
assets/js/app.js
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const splash = document.getElementById('splash-screen');
|
||||||
|
const app = document.getElementById('app');
|
||||||
|
const homePage = document.getElementById('home-page');
|
||||||
|
const trackerPage = document.getElementById('tracker-page');
|
||||||
|
|
||||||
|
const navLinks = document.querySelectorAll('.bottom-nav a');
|
||||||
|
|
||||||
|
const pages = {
|
||||||
|
'home': homePage,
|
||||||
|
'tracker': trackerPage
|
||||||
|
};
|
||||||
|
|
||||||
|
// Splash screen logic
|
||||||
|
setTimeout(() => {
|
||||||
|
splash.style.opacity = '0';
|
||||||
|
setTimeout(() => {
|
||||||
|
splash.classList.add('hidden');
|
||||||
|
app.classList.remove('hidden');
|
||||||
|
}, 1000);
|
||||||
|
}, 2000);
|
||||||
|
|
||||||
|
// Navigation logic
|
||||||
|
navLinks.forEach(link => {
|
||||||
|
link.addEventListener('click', (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
const targetPage = link.getAttribute('href').substring(1);
|
||||||
|
|
||||||
|
// Toggle active class on nav links
|
||||||
|
navLinks.forEach(nav => nav.classList.remove('active'));
|
||||||
|
link.classList.add('active');
|
||||||
|
|
||||||
|
// Show/hide pages
|
||||||
|
for (const page in pages) {
|
||||||
|
if (pages[page]) {
|
||||||
|
pages[page].classList.add('hidden');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pages[targetPage]) {
|
||||||
|
pages[targetPage].classList.remove('hidden');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Chart.js for steps
|
||||||
|
const stepsChartCtx = document.getElementById('steps-chart')?.getContext('2d');
|
||||||
|
if (stepsChartCtx) {
|
||||||
|
new Chart(stepsChartCtx, {
|
||||||
|
type: 'bar',
|
||||||
|
data: {
|
||||||
|
labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
||||||
|
datasets: [{
|
||||||
|
label: 'Steps',
|
||||||
|
data: [8540, 9230, 7890, 10200, 12430, 9870, 8800],
|
||||||
|
backgroundColor: 'rgba(137, 207, 240, 0.6)',
|
||||||
|
borderColor: 'rgba(137, 207, 240, 1)',
|
||||||
|
borderWidth: 1
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
responsive: true,
|
||||||
|
plugins: {
|
||||||
|
legend: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
scales: {
|
||||||
|
y: {
|
||||||
|
beginAtZero: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Button alerts for demo purposes
|
||||||
|
const logWaterBtn = document.querySelector('.btn:nth-child(1)');
|
||||||
|
const logMoodBtn = document.querySelector('.btn:nth-child(2)');
|
||||||
|
if(logWaterBtn) logWaterBtn.addEventListener('click', () => alert('Water logged! (feature coming soon)'));
|
||||||
|
if(logMoodBtn) logMoodBtn.addEventListener('click', () => alert('Mood logged! (feature coming soon)'));
|
||||||
|
});
|
||||||
262
index.php
262
index.php
@ -1,150 +1,126 @@
|
|||||||
<?php
|
<!DOCTYPE html>
|
||||||
declare(strict_types=1);
|
|
||||||
@ini_set('display_errors', '1');
|
|
||||||
@error_reporting(E_ALL);
|
|
||||||
@date_default_timezone_set('UTC');
|
|
||||||
|
|
||||||
$phpVersion = PHP_VERSION;
|
|
||||||
$now = date('Y-m-d H:i:s');
|
|
||||||
?>
|
|
||||||
<!doctype html>
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>New Style</title>
|
<title>HEALIFY</title>
|
||||||
<?php
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
|
||||||
// Read project preview data from environment
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
||||||
?>
|
<link rel="stylesheet" href="assets/css/styles.css">
|
||||||
<?php if ($projectDescription): ?>
|
|
||||||
<!-- Meta description -->
|
|
||||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
|
||||||
<!-- Open Graph meta tags -->
|
|
||||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
|
||||||
<!-- Twitter meta tags -->
|
|
||||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php if ($projectImageUrl): ?>
|
|
||||||
<!-- Open Graph image -->
|
|
||||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
||||||
<!-- Twitter image -->
|
|
||||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
||||||
<?php endif; ?>
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--bg-color-start: #6a11cb;
|
|
||||||
--bg-color-end: #2575fc;
|
|
||||||
--text-color: #ffffff;
|
|
||||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
|
||||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Inter', sans-serif;
|
|
||||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
|
||||||
color: var(--text-color);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
text-align: center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
body::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
|
||||||
animation: bg-pan 20s linear infinite;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
@keyframes bg-pan {
|
|
||||||
0% { background-position: 0% 0%; }
|
|
||||||
100% { background-position: 100% 100%; }
|
|
||||||
}
|
|
||||||
main {
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
background: var(--card-bg-color);
|
|
||||||
border: 1px solid var(--card-border-color);
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 2rem;
|
|
||||||
backdrop-filter: blur(20px);
|
|
||||||
-webkit-backdrop-filter: blur(20px);
|
|
||||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.loader {
|
|
||||||
margin: 1.25rem auto 1.25rem;
|
|
||||||
width: 48px;
|
|
||||||
height: 48px;
|
|
||||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
|
||||||
border-top-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 1s linear infinite;
|
|
||||||
}
|
|
||||||
@keyframes spin {
|
|
||||||
from { transform: rotate(0deg); }
|
|
||||||
to { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
.hint {
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
.sr-only {
|
|
||||||
position: absolute;
|
|
||||||
width: 1px; height: 1px;
|
|
||||||
padding: 0; margin: -1px;
|
|
||||||
overflow: hidden;
|
|
||||||
clip: rect(0, 0, 0, 0);
|
|
||||||
white-space: nowrap; border: 0;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 3rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0 0 1rem;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0.5rem 0;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
}
|
|
||||||
code {
|
|
||||||
background: rgba(0,0,0,0.2);
|
|
||||||
padding: 2px 6px;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 1rem;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
|
||||||
<div class="card">
|
<div id="splash-screen">
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<div class="logo">HEALIFY</div>
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<div class="tagline">Track • Grow • Glow</div>
|
||||||
<span class="sr-only">Loading…</span>
|
|
||||||
</div>
|
|
||||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
|
||||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
|
||||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
|
||||||
<footer>
|
<main id="app" class="hidden">
|
||||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
<div id="home-page">
|
||||||
</footer>
|
<header>
|
||||||
|
<h1>Home</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="dashboard">
|
||||||
|
<div class="card wellness-score">
|
||||||
|
<h2>Wellness Score</h2>
|
||||||
|
<div class="score">85</div>
|
||||||
|
</div>
|
||||||
|
<div class="card steps">
|
||||||
|
<i class="fas fa-walking"></i>
|
||||||
|
<h3>Steps</h3>
|
||||||
|
<p>8,540</p>
|
||||||
|
</div>
|
||||||
|
<div class="card sleep">
|
||||||
|
<i class="fas fa-bed"></i>
|
||||||
|
<h3>Sleep</h3>
|
||||||
|
<p>7h 30m</p>
|
||||||
|
</div>
|
||||||
|
<div class="card water">
|
||||||
|
<h3>Water Intake</h3>
|
||||||
|
<div class="progress-bar">
|
||||||
|
<div class="progress" style="width: 60%;"></div>
|
||||||
|
</div>
|
||||||
|
<p>6/10 glasses</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mood">
|
||||||
|
<i class="fas fa-smile"></i>
|
||||||
|
<h3>Mood</h3>
|
||||||
|
<p>Happy</p>
|
||||||
|
</div>
|
||||||
|
<div class="card quote">
|
||||||
|
<p>"The greatest wealth is health."</p>
|
||||||
|
</div>
|
||||||
|
<div class="card health-tip">
|
||||||
|
<h3>Health Tip</h3>
|
||||||
|
<p>Stay hydrated, it improves everything.</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="quick-add">
|
||||||
|
<button class="btn"><i class="fas fa-tint"></i> Log Water</button>
|
||||||
|
<button class="btn"><i class="fas fa-grin"></i> Log Mood</button>
|
||||||
|
<button class="btn"><i class="fas fa-dumbbell"></i> Start Workout</button>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="tracker-page" class="hidden">
|
||||||
|
<header>
|
||||||
|
<h1>Health Tracker</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="tracker-dashboard">
|
||||||
|
<div class="card">
|
||||||
|
<h3>Weekly Steps</h3>
|
||||||
|
<canvas id="steps-chart"></canvas>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<i class="fas fa-tint"></i>
|
||||||
|
<h3>Water Intake</h3>
|
||||||
|
<p>6/10 glasses</p>
|
||||||
|
<button class="btn btn-small">+</button>
|
||||||
|
<button class="btn btn-small">-</button>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<i class="fas fa-bed"></i>
|
||||||
|
<h3>Sleep Log</h3>
|
||||||
|
<p>7h 30m</p>
|
||||||
|
<input type="text" placeholder="Add sleep time"/>
|
||||||
|
</div>
|
||||||
|
<div class="card meal-tracker">
|
||||||
|
<h3>Meal Tracker</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Breakfast: Oats</li>
|
||||||
|
<li>Lunch: Salad</li>
|
||||||
|
<li>Dinner: Chicken</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Calories</h3>
|
||||||
|
<p>1800 kcal</p>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<i class="fas fa-heartbeat"></i>
|
||||||
|
<h3>Heart Rate</h3>
|
||||||
|
<p>72 bpm</p>
|
||||||
|
<input type="text" placeholder="Add heart rate"/>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="bottom-nav">
|
||||||
|
<a href="#home" class="active"><i class="fas fa-home"></i><span>Home</span></a>
|
||||||
|
<a href="#tracker"><i class="fas fa-heartbeat"></i><span>Tracker</span></a>
|
||||||
|
<a href="#"><i class="fas fa-smile-beam"></i><span>Mood</span></a>
|
||||||
|
<a href="#"><i class="fas fa-dumbbell"></i><span>Workout</span></a>
|
||||||
|
<a href="#"><i class="fas fa-user"></i><span>Profile</span></a>
|
||||||
|
</nav>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||||
|
<script src="assets/js/app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user