-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ccd280
commit 483a644
Showing
19 changed files
with
293 additions
and
110 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,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>404 Not Found - The EventHorizon App</title> | ||
<link rel="stylesheet" href="src/css/style.css"> | ||
<link rel="icon" type="image/x-icon" href="images/favicon.ico"> | ||
<style> | ||
.error-container { | ||
text-align: center; | ||
margin-top: 50px; | ||
} | ||
|
||
.error-container h1 { | ||
font-size: 6rem; | ||
margin-bottom: 0; | ||
} | ||
|
||
.error-container p { | ||
font-size: 1.5rem; | ||
margin-top: 0; | ||
} | ||
|
||
.back-link { | ||
font-size: 1.2rem; | ||
color: #ffffff; | ||
text-decoration: none; | ||
padding: 10px 15px; | ||
background-color: white; | ||
border-radius: 5px; | ||
margin-top: 20px; | ||
display: inline-block; | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.back-link:hover { | ||
text-decoration: underline; | ||
background-color: #f8f8f8; | ||
} | ||
</style> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9NPSN4RVS4"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-9NPSN4RVS4'); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="error-container"> | ||
<h1>404</h1> | ||
<p>Oops! The page you're looking for can't be found.</p> | ||
<a href="index.html" class="back-link">Back to Home</a> | ||
</div> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
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,26 @@ | ||
{ | ||
"name": "The EventHorizon App", | ||
"short_name": "EventHorizon", | ||
"description": "The EventHorizon App is an intuitive event countdown tool, perfect for tracking important dates and occasions in your life.", | ||
"start_url": "/", | ||
"display": "standalone", | ||
"background_color": "#ffffff", | ||
"theme_color": "#ffffff", | ||
"icons": [ | ||
{ | ||
"src": "images/icon-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "images/icon-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"orientation": "portrait", | ||
"lang": "en-US", | ||
"scope": "/", | ||
"dir": "ltr", | ||
"prefer_related_applications": false | ||
} |
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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<url> | ||
<loc>https://hoangsonww.github.io/The-Event-Horizon-App/</loc> | ||
<lastmod>2024-01-02</lastmod> | ||
<priority>1.00</priority> | ||
</url> | ||
<url> | ||
<loc>https://hoangsonww.github.io/The-Event-Horizon-App/src/html/about.html</loc> | ||
<lastmod>2024-01-02</lastmod> | ||
<priority>0.80</priority> | ||
</url> | ||
</urlset> |
Oops, something went wrong.