-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from canopas/Mayank/share-option-with-deep-li…
…nking Share option with deep linking
- Loading branch information
Showing
29 changed files
with
562 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"applinks":{ | ||
"apps":[], | ||
"details":[ | ||
{ | ||
"appIDs":[ | ||
"S985H2T7J8.com.canopas.khelo" | ||
], | ||
"components":[ | ||
{ "/":"/" }, | ||
{ "/":"/team/*" }, | ||
{ "/":"/tournament/*" }, | ||
{ "/":"/match/*" } | ||
] | ||
} | ||
] | ||
}, | ||
"webcredentials": { | ||
"apps": [ | ||
"S985H2T7J8.com.canopas.khelo" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include: [".well-known"] | ||
name: Khelo | ||
title: null | ||
title: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,293 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Khelo - Easy Cricket Scoring</title> | ||
<link rel="icon" href="ic_favicon.png" type="image/png"> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
header { | ||
position: fixed; | ||
width: 100%; | ||
height: 60px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
backdrop-filter: blur(10px); | ||
background: rgba(1, 55, 155, 0.1); | ||
z-index: 1000; | ||
} | ||
|
||
header img { | ||
height: 32px; | ||
margin-right: 10px; | ||
} | ||
|
||
header .logo { | ||
display: flex; | ||
align-items: center; | ||
font-size: 20px; | ||
font-weight: bold; | ||
color: black; | ||
text-decoration: none; | ||
} | ||
|
||
.container { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
|
||
.app-details { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 20px; | ||
padding-top: 80px; | ||
} | ||
|
||
.app-details .content { | ||
max-width: 50%; | ||
} | ||
|
||
.app-details h2 { | ||
color: black; | ||
font-size: 32px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.app-details p { | ||
font-size: 16px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.app-details img { | ||
transition: transform 0.3s; | ||
} | ||
|
||
.app-details img:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
.app-details .screenshots img { | ||
width: 500px; | ||
height: auto; | ||
border-radius: 10px; | ||
margin: 0 10px; | ||
transition: transform 0.3s; | ||
} | ||
|
||
.app-details .screenshots img:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
.features { | ||
padding: 40px 20px; | ||
} | ||
|
||
.features h1 { | ||
text-align: center; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.features .feature-list { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
gap: 20px; | ||
margin-bottom: 40px; | ||
} | ||
|
||
.feature { | ||
padding: 20px; | ||
width: 28%; | ||
border-radius: 15px; | ||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s, box-shadow 0.3s, background 0.3s; | ||
} | ||
|
||
.feature:hover { | ||
transform: translateY(-5px); | ||
background-color: rgba(1, 55, 155, 0.1); | ||
} | ||
|
||
.feature h3 { | ||
margin-bottom: 10px; | ||
} | ||
|
||
footer { | ||
display: flex; | ||
justify-content: space-around; | ||
padding: 40px 20px; | ||
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
footer .footer-section { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
gap: 10px; | ||
} | ||
|
||
footer a { | ||
text-decoration: none; | ||
color: black; | ||
font-size: 15px; | ||
transition: color 0.3s; | ||
} | ||
|
||
footer a:hover { | ||
color: #01579B; | ||
} | ||
|
||
footer img { | ||
width: 150px; | ||
transition: transform 0.3s; | ||
} | ||
|
||
footer img:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
.app-details .content a { | ||
display: block; | ||
margin-bottom: 15px; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.app-details { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
|
||
.app-details .content { | ||
max-width: 100%; | ||
margin-bottom: 40px; | ||
} | ||
|
||
.features .feature-list .feature { | ||
width: 95%; | ||
} | ||
|
||
footer { | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
|
||
footer .footer-section { | ||
align-items: center; | ||
} | ||
|
||
.app-details .screenshots img { | ||
width: 100%; | ||
} | ||
} | ||
|
||
@media (max-width: 480px) { | ||
.features .feature-list .feature { | ||
width: 100%; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<img src="https://github.com/canopas/khelo/raw/main/khelo/assets/images/ic_app_logo.svg" alt="Khelo"> | ||
</header> | ||
<div class="container"> | ||
<section class="app-details"> | ||
<div class="content"> | ||
<h2>Khelo - Easy Cricket Scoring</h2> | ||
<p>Your Ultimate Companion for Cricket Management</p> | ||
<div> | ||
<a href="https://play.google.com/store/apps/details?id=com.canopas.khelo"> | ||
<img src="https://github.com/canopas/khelo/raw/main/cta/google_play.png" loading="lazy" width="200" alt="Download on Google Play"> | ||
</a> | ||
<a href="https://apps.apple.com/us/app/khelo/id6480175424"> | ||
<img src="https://github.com/canopas/khelo/raw/main/cta/app_store.png" loading="lazy" width="200" alt="Download on App Store"> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="screenshots"> | ||
<img src="app_showcase.png" loading="lazy" alt="Screenshot"> | ||
</div> | ||
</section> | ||
<section class="features"> | ||
<h1>Features</h1> | ||
<div class="feature-list"> | ||
<div class="feature"> | ||
<h3>Profile Management</h3> | ||
<p>Create and manage profiles for players, coaches, and team managers effortlessly.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Team Creation</h3> | ||
<p>Form your dream team by adding players and managing team compositions.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Player Management</h3> | ||
<p>Track player statistics, performance history, and personal details easily.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Match Data Recording</h3> | ||
<p>Record detailed match data, including scores, wickets, and custom metrics.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Performance Tracking</h3> | ||
<p>Analyze player performance over time for better decision-making.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Team Statistics</h3> | ||
<p>Gain insights into team performance with comprehensive statistics.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Toss Details</h3> | ||
<p>Document toss results and decisions for detailed match analysis.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Tournament Management</h3> | ||
<p>Organize and track cricket tournaments easily from the app.</p> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
<footer> | ||
<div class="footer-section"> | ||
<a href="https://canopas.github.io/khelo/terms-and-condition">Terms and Conditions</a> | ||
<a href="https://canopas.github.io/khelo/privacy-policy">Privacy Policy</a> | ||
</div> | ||
<div class="footer-section"> | ||
<a href="https://github.com/canopas/khelo/issues">Report an Issue</a> | ||
<a href="https://github.com/canopas/khelo">Github</a> | ||
<a href="https://canopas.com">About Us</a> | ||
</div> | ||
<div class="footer-section"> | ||
<a href="https://play.google.com/store/apps/details?id=com.canopas.khelo"> | ||
<img src="https://github.com/canopas/khelo/raw/main/cta/google_play.png" | ||
loading="lazy" | ||
alt="Download from Google Play"> | ||
</a> | ||
<a href="https://apps.apple.com/us/app/khelo/id6480175424"> | ||
<img src="https://github.com/canopas/khelo/raw/main/cta/app_store.png" | ||
loading="lazy" | ||
alt="Download on App Store"> | ||
</a> | ||
</div> | ||
</footer> | ||
<div style="text-align:center;"> | ||
<p style="font-size: 14px; color: #6c757d;">© 2025 Khelo | Built with ❤️ In India </p> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.