-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
video/ai-extensions/video-28-landing-page/Landing Page.html
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,82 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Office Story - Indie Game</title> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<style> | ||
/* Additional CSS */ | ||
.game-title { | ||
font-family: "Press Start 2P", cursive; | ||
} | ||
.bg-game-pattern { | ||
background-image: url("https://source.unsplash.com/featured/?office"); | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
</style> | ||
</head> | ||
<body class="bg-game-pattern bg-fixed"> | ||
<!-- Hero Section --> | ||
<section class="text-center p-8 md:p-16"> | ||
<h1 class="text-4xl md:text-6xl game-title text-white mb-4"> | ||
Office Story | ||
</h1> | ||
<p class="text-white text-lg mb-8"> | ||
Build your own software empire in a blocky world. | ||
</p> | ||
<img | ||
src="https://source.unsplash.com/featured/?office,game" | ||
alt="Office Story Game Screenshot" | ||
class="mx-auto rounded-lg shadow-lg mb-8" | ||
style="max-width: 600px" | ||
/> | ||
<a | ||
href="#" | ||
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full inline-block mb-4" | ||
>Play Now</a | ||
> | ||
</section> | ||
|
||
<!-- About the Game Section --> | ||
<section class="bg-white p-8 md:p-16"> | ||
<h2 class="text-3xl text-center mb-8">About the Game</h2> | ||
<p class="text-gray-600 text-lg mb-8"> | ||
In Office Story, you take on the role of a tech entrepreneur on the | ||
quest to disrupt the digital world. Start from a humble garage office to | ||
a high-rise tech park, manage your team, and create innovative products | ||
to become a market leader. | ||
</p> | ||
<div class="flex flex-wrap justify-center gap-4"> | ||
<img | ||
src="https://source.unsplash.com/featured/?office,computer" | ||
alt="Gameplay Element" | ||
class="rounded-lg shadow-md" | ||
style="max-width: 300px" | ||
/> | ||
<img | ||
src="https://source.unsplash.com/featured/?office,meeting" | ||
alt="Gameplay Element" | ||
class="rounded-lg shadow-md" | ||
style="max-width: 300px" | ||
/> | ||
<img | ||
src="https://source.unsplash.com/featured/?office,teamwork" | ||
alt="Gameplay Element" | ||
class="rounded-lg shadow-md" | ||
style="max-width: 300px" | ||
/> | ||
</div> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<footer class="bg-gray-800 text-white text-center p-4"> | ||
<p>© 2024 Office Story Game. All rights reserved.</p> | ||
</footer> | ||
|
||
<script> | ||
// Additional JavaScript can be added here | ||
</script> | ||
</body> | ||
</html> |