First commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.aider*
|
||||
BIN
assets/background.mp4
Normal file
BIN
assets/background.mp4
Normal file
Binary file not shown.
7
assets/logo.svg
Normal file
7
assets/logo.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M224.376 93.4601C268.638 53.3895 319.574 129.576 265.973 151.136C224.024 168.007 198.59 125.653 224.376 100.761" stroke="#000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M96.6917 205.614C198.75 129.048 141.583 175.552 260.583 196.006C281.322 199.571 310.145 174.654 331.787 174.654" stroke="#000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M211.186 193.386C188.825 217.649 168.895 301.424 148.584 321.489C146.731 323.319 131.412 315.735 128.461 314.863C108.892 309.063 89.4256 306.029 69.2129 306.029" stroke="#000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M181.833 267.137C280.027 229.22 223.702 247.924 304.333 290.913" stroke="#000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
78
index.html
Normal file
78
index.html
Normal file
@@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>JMP GAMES</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<video autoplay muted loop playsinline id="background-video">
|
||||
<source src="assets/background.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
|
||||
<main class="container">
|
||||
<div class="card logo-card">
|
||||
<img src="assets/logo.svg" alt="JMP Games" class="logo">
|
||||
<h1>JMP Games</h1>
|
||||
<p class="tagline">Creating Atmospheric Digital Worlds</p>
|
||||
</div>
|
||||
|
||||
<div class="card game-card">
|
||||
<h2>UPCOMING TITLE</h2>
|
||||
<div class="game-preview">
|
||||
<h3>DTS</h3>
|
||||
<p>A psychological horror adventure where reality bends and shadows come alive.</p>
|
||||
<div class="release-date">Coming 2025</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card newsletter-card">
|
||||
<h2>JOIN THE NEWSLETTER</h2>
|
||||
<p>Subscribe for development updates and exclusive content</p>
|
||||
<form id="newsletter-form">
|
||||
<input type="email" placeholder="Enter your email" required>
|
||||
<button type="submit">SUBSCRIBE</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="card team-card">
|
||||
<h2>THE TEAM</h2>
|
||||
<div class="team-grid">
|
||||
<div class="team-member">
|
||||
<img src="avatar1.jpg" alt="Team Member">
|
||||
<h3>Tizio Caio</h3>
|
||||
<!-- <p>Creative Director</p> -->
|
||||
</div>
|
||||
<div class="team-member">
|
||||
<img src="avatar2.jpg" alt="Team Member">
|
||||
<h3>Tizio Caio</h3>
|
||||
<!-- <p>Lead Developer</p> -->
|
||||
</div>
|
||||
<div class="team-member">
|
||||
<img src="avatar3.jpg" alt="Team Member">
|
||||
<h3>Tizio Caio</h3>
|
||||
<!-- <p>Art Director</p> -->
|
||||
</div>
|
||||
<div class="team-member">
|
||||
<img src="avatar4.jpg" alt="Team Member">
|
||||
<h3>Tizio Caio</h3>
|
||||
<!-- <p>Technical Artist</p> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<a href="privacy-policy.html" target="_blank">Privacy Policy</a>
|
||||
<a href="https://drive.google.com/drive/folders/your-folder-id" target="_blank">Press Kit</a>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
<p>© 2025 JMP Games. All rights reserved.</p>
|
||||
<p>VAT: IT12345678901</p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
63
privacy-policy.html
Normal file
63
privacy-policy.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>Privacy Policy - JMP GAMES</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<video autoplay muted loop playsinline id="background-video">
|
||||
<source src="assets/background.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
|
||||
<main class="container">
|
||||
<div class="card">
|
||||
<h1>Privacy Policy</h1>
|
||||
<p style="margin-top: 1rem;">Last updated: February 25, 2025</p>
|
||||
|
||||
<h2 style="margin-top: 2rem;">Introduction</h2>
|
||||
<p>Welcome to JMP Games. We respect your privacy and are committed to protecting your personal data.</p>
|
||||
|
||||
<h2>Information We Collect</h2>
|
||||
<p>We may collect the following types of information:</p>
|
||||
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
|
||||
<li>Email address (when you subscribe to our newsletter)</li>
|
||||
<li>Usage data and analytics</li>
|
||||
<li>Device information</li>
|
||||
</ul>
|
||||
|
||||
<h2>How We Use Your Information</h2>
|
||||
<p>We use your information to:</p>
|
||||
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
|
||||
<li>Send you updates about our games</li>
|
||||
<li>Improve our website and services</li>
|
||||
<li>Respond to your inquiries</li>
|
||||
</ul>
|
||||
|
||||
<h2>Data Security</h2>
|
||||
<p>We implement appropriate security measures to protect your personal data against unauthorized access or disclosure.</p>
|
||||
|
||||
<h2>Your Rights</h2>
|
||||
<p>You have the right to:</p>
|
||||
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
|
||||
<li>Access your personal data</li>
|
||||
<li>Request correction of your personal data</li>
|
||||
<li>Request deletion of your personal data</li>
|
||||
<li>Withdraw consent at any time</li>
|
||||
</ul>
|
||||
|
||||
<h2>Contact Us</h2>
|
||||
<p>If you have any questions about this Privacy Policy, please contact us at privacy@jmpgames.com</p>
|
||||
|
||||
<div style="margin-top: 2rem; text-align: center;">
|
||||
<a href="index.html" style="color: var(--primary); text-decoration: none;">← Back to Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
20
script.js
Normal file
20
script.js
Normal file
@@ -0,0 +1,20 @@
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
// Newsletter form submission
|
||||
const form = document.getElementById('newsletter-form');
|
||||
form.addEventListener('submit', (e) => {
|
||||
e.preventDefault();
|
||||
const email = e.target.querySelector('input[type="email"]').value;
|
||||
// Here you would typically send this to your backend
|
||||
alert('Thanks for subscribing! Check your email for confirmation.');
|
||||
form.reset();
|
||||
});
|
||||
|
||||
// Add subtle parallax effect to video background
|
||||
document.addEventListener('mousemove', (e) => {
|
||||
const mouseX = e.clientX / window.innerWidth;
|
||||
const mouseY = e.clientY / window.innerHeight;
|
||||
|
||||
const video = document.getElementById('background-video');
|
||||
video.style.transform = `scale(1.1) translate(${mouseX * -20}px, ${mouseY * -20}px)`;
|
||||
});
|
||||
});
|
||||
246
styles.css
Normal file
246
styles.css
Normal file
@@ -0,0 +1,246 @@
|
||||
:root {
|
||||
--primary: #D99748; /* Golden Orange */
|
||||
--secondary: #73614C; /* Warm Brown */
|
||||
--accent: #D99748; /* Golden Orange */
|
||||
--accent-2: #73614C; /* Warm Brown */
|
||||
--highlight: #D99748; /* Golden Orange */
|
||||
--bg-dark: #0D0D0D; /* Almost Black */
|
||||
--card-bg: rgba(38, 38, 38, 0.95); /* Dark Gray with opacity */
|
||||
--text-light: #F2F2F2; /* Off-White for text */
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Rajdhani', sans-serif;
|
||||
background-color: var(--bg-dark);
|
||||
background-image: url('norse-pattern.png');
|
||||
background-blend-mode: overlay;
|
||||
color: var(--text-light);
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#background-video {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
filter: blur(8px) brightness(0.6);
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
width: 90%;
|
||||
margin: 2rem auto;
|
||||
padding: 1rem;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--card-bg);
|
||||
border-radius: 8px;
|
||||
padding: clamp(1rem, 5vw, 2rem);
|
||||
backdrop-filter: blur(10px);
|
||||
border: none;
|
||||
transition: transform 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
||||
max-width: 800px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.logo-card {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
||||
color: var(--primary);
|
||||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(1.4rem, 4vw, 1.8rem);
|
||||
margin-bottom: 1rem;
|
||||
color: var(--primary);
|
||||
border-bottom: 2px solid var(--secondary);
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.2rem;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.game-preview {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.release-date {
|
||||
margin-top: 1rem;
|
||||
font-weight: bold;
|
||||
color: var(--highlight); /* Orange */
|
||||
}
|
||||
|
||||
.newsletter-card form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
input[type="email"] {
|
||||
padding: 0.8rem;
|
||||
border-radius: 5px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: white;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 0.8rem;
|
||||
border: 2px solid var(--highlight);
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
color: var(--highlight);
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background: var(--highlight);
|
||||
color: var(--text-light);
|
||||
box-shadow: 0 0 15px rgba(217, 151, 72, 0.3);
|
||||
}
|
||||
|
||||
.team-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.team-member {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.team-member img {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
border: 2px solid var(--accent-2);
|
||||
filter: brightness(0.95) contrast(1.05);
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.team-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.newsletter-card form {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
input[type="email"],
|
||||
button {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
color: var(--accent);
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.9;
|
||||
transition: opacity 0.3s ease, color 0.3s ease;
|
||||
}
|
||||
|
||||
.footer-links a:hover {
|
||||
opacity: 1;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.copyright p {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.container {
|
||||
width: 95%;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.team-member img {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user