This commit is contained in:
2025-01-29 18:22:58 +05:30
parent 8aaea4bd32
commit b4001596d3
207 changed files with 13267 additions and 2341 deletions

View File

@@ -16,14 +16,12 @@ require 'core/get_statistics.php'; // Include the statistics file
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/_home.css">
</head>
<?php
include "assets/_header.php";
?>
<body>
<?php include "assets/_header.php"; ?>
<main>
<!-- Shorten Section -->
<section class="shorten-section">
<section class="shorten-section" style="user-select: none;">
<h1>Open source inits.</h1>
<h2>Lovingly hand-crafted.</h2>
<p>Premium link shortening for use in web, iOS, Android, and<br> desktop apps. Supported for urls. Completely open source, MIT<br> licensed and built by <a href="https://www.xodivorce.in" target="_blank" class="custom-link">xodivorce</a>.</p>
@@ -54,13 +52,12 @@ include "assets/_header.php";
echo '<li>';
echo '<div class="link-icon"><img src="assets/images/url.png" class="url-img"></div>';
echo '<div class="link-info">';
echo '<span class="short-link"">xeorl.buzz/*****</span>';
echo '<span class="short-link">xeorl.buzz/*****</span>';
echo '<span class="long-link">You don\'t have any shortened links</span>';
echo '</div>';
echo '<button class="copy-btn"><img src="assets/images/copy.png"></button>';
echo '<button class="delete-btn"><img src="assets/images/delete.png"></button>';
echo '</li>';
}
?>
</ul>
@@ -68,36 +65,49 @@ include "assets/_header.php";
</section>
<!-- Dashboard Statistics Section -->
<section class="dashboard-stats-section">
<h1 class="section-heading">Numbers Speak For Themselves.</h1>
<h2 class="section-subheading">Challenged By URLs, Defeted By None.</h2>
<p class="section-paragraph">
Even though were a growing community with a close-knit user base,<br>
our commitment to you is always personal. Were here 24/7<br>
to support and resolve any issues you have because your satisfaction<br>
means everything to us. For any issues, email us at <a href="mailto:hey@xodivorce.in" class="contact-link">hey@xodivorce.in</a>.
</p>
<section class="dashboard-stats-section" style="user-select: none;">
<h1 class="section-heading">Numbers Speak For Themselves.</h1>
<h2 class="section-subheading">Challenged By URLs, Defeated By None.</h2>
<p class="section-paragraph">
Even though were a growing community with a close-knit user base,
our commitment to you is always personal. Were here 24/7
to support and resolve any issues you have because your satisfaction
means everything to us. For any issues, email us at <a href="mailto:hey@xodivorce.in" class="contact-link">hey@xodivorce.in</a>.
</p>
<section class="dashboard-stats">
<div class="stat-item">
<img src="assets/images/links.png" alt="Total Links" class="stat-icon links-icon">
<h3>Total URLs</h3>
<p><?php echo $total_links; ?></p>
</div>
<div class="stat-item">
<img src="assets/images/total.png" alt="Total Clicks" class="stat-icon total-icon">
<h3>Total Clicks</h3>
<p><?php echo $total_clicks; ?></p>
</div>
<div class="stat-item">
<img src="assets/images/users.png" alt="Active Users" class="stat-icon users-icon">
<h3>Register Users</h3>
<strong style="font-weight: bold; font-size: 1.5em;"><?php echo "2,407"; ?></strong>
<div class="dashboard-stats">
<div class="stat-item">
<img src="assets/images/total.png" alt="Total Clicks" class="stat-icon total-icon">
<h3>Total Clicks</h3>
<p><?php echo $total_clicks; ?></p>
</div>
<div class="stat-item">
<img src="assets/images/links.png" alt="Total Links" class="stat-icon links-icon">
<h3>Total URLs</h3>
<p><?php echo $total_links; ?></p>
</div>
<div class="stat-item">
<img src="assets/images/users.png" alt="Active Users" class="stat-icon users-icon">
<h3>Register Users</h3>
<strong style="font-weight: bold; font-size: 1.5em;"><?php echo "2,407"; ?></strong>
</div>
</div>
</section>
<!-- How to Start Section -->
<section class="how-to-start-section" style="user-select: none;">
<h1 class="section-heading">Just Three Simple Steps</h1>
<h2 class="section-subheading">How to Get Started?</h2>
<p class="section-paragraph">Starting is easy! Follow these three simple steps to begin earning:</p>
<div class="steps-list">
<h3>1. Create an Account</h3>
<p>Signing up with us is quick and completely free. Once registered, youll gain access to all our amazing features. Start your journey to simpler link management today!</p>
<h3>2. Shorten Your Link</h3>
<p>Turn long, cumbersome URLs into short, shareable links with ease. Our tool makes the process simple, fast, and entirely cost-free. Create customized links in seconds!</p>
<h3>3. Earn Money</h3>
<p>Share your shortened links with friends, family, or your audience. Each click earns you money, helping you generate income effortlessly. Start sharing today and see your earnings grow!</p>
</div>
</section>
</section>
</main>
<?php include 'assets/_footer.php'; ?>