97 lines
4.8 KiB
PHP
97 lines
4.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
// Read project preview data from environment
|
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Build Elite Fitness Plans, Faster.';
|
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
|
?>
|
|
<!doctype html>
|
|
<html lang="fa" dir="rtl">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>FitGen - همراه نهایی شما در بدنسازی</title>
|
|
|
|
<?php if ($projectDescription): ?>
|
|
<meta name="description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
|
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
|
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
|
<?php endif; ?>
|
|
<?php if ($projectImageUrl): ?>
|
|
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
<?php endif; ?>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.rtl.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<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=Roboto:wght@400;700&family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">FitGen</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#features">ویژگیها</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="plans.php">برنامهها</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">ورزشکاران</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">تمرینات</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1>برنامههای ورزشی حرفهای بسازید، سریعتر.</h1>
|
|
<p class="lead">پلتفرم یکپارچه برای مربیان بدنسازی جهت ساخت، مدیریت و پیگیری پیشرفت ورزشکاران.</p>
|
|
<a href="create-plan.php" class="btn btn-primary btn-lg">شروع به ساختن</a>
|
|
</div>
|
|
</header>
|
|
|
|
<section id="features" class="features">
|
|
<div class="container">
|
|
<div class="row text-center">
|
|
<div class="col-md-4 mb-4">
|
|
<i class="bi bi-pencil-square feature-icon"></i>
|
|
<h3 class="mt-3">ساختن برنامه</h3>
|
|
<p>به راحتی برنامههای تمرینی دقیق را برای ورزشکاران خود بسازید و سفارشی کنید.</p>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<i class="bi bi-person-lines-fill feature-icon"></i>
|
|
<h3 class="mt-3">مدیریت ورزشکاران</h3>
|
|
<p>پروفایلهای مشتریان خود را مدیریت کرده و سفر آنها را در یک مکان پیگیری کنید.</p>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<i class="bi bi-graph-up-arrow feature-icon"></i>
|
|
<h3 class="mt-3">پیگیری پیشرفت</h3>
|
|
<p>پیشرفت ورزشکاران را با ابزارهای قدرتمند پیگیری و گزارشدهی به تصویر بکشید.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p>© 2025 FitGen. تمام حقوق محفوظ است.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|