Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b88c05da0 |
160
assets/css/custom.css
Normal file
160
assets/css/custom.css
Normal file
@ -0,0 +1,160 @@
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
||||
|
||||
:root {
|
||||
--color-primary: #00BFFF; /* Deep Sky Blue */
|
||||
--color-background: #111;
|
||||
--color-surface: #1C1C1C;
|
||||
--color-text: #f0f0f0;
|
||||
--font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background: url('../pasted-20250927-163443-11555b32.jpg') no-repeat center center;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
color: var(--color-text);
|
||||
font-family: var(--font-family);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
body::after {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: var(--font-family);
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: var(--color-surface) !important;
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-weight: 700;
|
||||
color: var(--color-primary) !important;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: rgba(255, 255, 255, 0.8) !important;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-link:hover,
|
||||
.nav-link.active {
|
||||
color: var(--color-primary) !important;
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: 10rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--color-primary);
|
||||
border: none;
|
||||
color: #fff;
|
||||
font-family: var(--font-family);
|
||||
font-weight: 700;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.product-card {
|
||||
background-color: var(--color-surface);
|
||||
border: 1px solid var(--color-primary);
|
||||
border-radius: 0.5rem;
|
||||
overflow: hidden;
|
||||
transition: box-shadow 0.3s ease;
|
||||
box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
|
||||
}
|
||||
|
||||
.product-card:hover {
|
||||
box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
|
||||
}
|
||||
|
||||
.product-card .card-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.product-card .card-title {
|
||||
color: var(--color-text);
|
||||
font-weight: 700;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.product-card .card-text {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.product-card .price {
|
||||
font-family: var(--font-family);
|
||||
color: var(--color-primary);
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
margin-top: auto;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: var(--color-primary);
|
||||
border: none;
|
||||
color: #fff;
|
||||
font-family: var(--font-family);
|
||||
font-weight: 700;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: var(--color-surface);
|
||||
padding: 2rem 0;
|
||||
margin-top: 4rem;
|
||||
border-top: 1px solid #333;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: #aaa;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
4
assets/js/main.js
Normal file
4
assets/js/main.js
Normal file
@ -0,0 +1,4 @@
|
||||
// Future interactive elements will go here.
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
console.log('Cyberpunk store initialized.');
|
||||
});
|
||||
BIN
assets/pasted-20250927-162854-021de3f3.png
Normal file
BIN
assets/pasted-20250927-162854-021de3f3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/pasted-20250927-163443-11555b32.jpg
Normal file
BIN
assets/pasted-20250927-163443-11555b32.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 122 KiB |
BIN
assets/vm-shot-2025-09-27T16-27-41-276Z.jpg
Normal file
BIN
assets/vm-shot-2025-09-27T16-27-41-276Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 216 KiB |
BIN
assets/vm-shot-2025-09-27T16-34-19-561Z.jpg
Normal file
BIN
assets/vm-shot-2025-09-27T16-34-19-561Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 KiB |
262
index.php
262
index.php
@ -1,131 +1,139 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
@ini_set('display_errors', '1');
|
||||
@error_reporting(E_ALL);
|
||||
@date_default_timezone_set('UTC');
|
||||
|
||||
$phpVersion = PHP_VERSION;
|
||||
$now = date('Y-m-d H:i:s');
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>New Style</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-color-start: #6a11cb;
|
||||
--bg-color-end: #2575fc;
|
||||
--text-color: #ffffff;
|
||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||
color: var(--text-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
body::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
||||
animation: bg-pan 20s linear infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
@keyframes bg-pan {
|
||||
0% { background-position: 0% 0%; }
|
||||
100% { background-position: 100% 100%; }
|
||||
}
|
||||
main {
|
||||
padding: 2rem;
|
||||
}
|
||||
.card {
|
||||
background: var(--card-bg-color);
|
||||
border: 1px solid var(--card-border-color);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.loader {
|
||||
margin: 1.25rem auto 1.25rem;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
||||
border-top-color: #fff;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
@keyframes spin {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
.hint {
|
||||
opacity: 0.9;
|
||||
}
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px; height: 1px;
|
||||
padding: 0; margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap; border: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin: 0 0 1rem;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
p {
|
||||
margin: 0.5rem 0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
code {
|
||||
background: rgba(0,0,0,0.2);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
}
|
||||
footer {
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
font-size: 0.8rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
</style>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>VeNNom Academy - O Futuro é Agora</title>
|
||||
<meta name="description" content="Loja de produtos digitais com tema cyberpunk. Cursos, e-books e assets virtuais.">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://example.com/">
|
||||
<meta property="og:title" content="VeNNom Academy - O Futuro é Agora">
|
||||
<meta property="og:description" content="Loja de produtos digitais com tema cyberpunk. Cursos, e-books e assets virtuais.">
|
||||
<meta property="og:image" content="https://picsum.photos/seed/cyberpunk-hero/1200/630">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:url" content="https://example.com/">
|
||||
<meta property="twitter:title" content="VeNNom Academy - O Futuro é Agora">
|
||||
<meta property="twitter:description" content="Loja de produtos digitais com tema cyberpunk. Cursos, e-books e assets virtuais.">
|
||||
<meta property="twitter:image" content="https://picsum.photos/seed/cyberpunk-hero/1200/630">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⚡</text></svg>">
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="card">
|
||||
<h1>Analyzing your requirements and generating your website…</h1>
|
||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||
<span class="sr-only">Loading…</span>
|
||||
</div>
|
||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWiZZy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||
</footer>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#">VeNNom Academy</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="#">Início</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#products">Produtos</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#contact">Contato</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<!-- Hero Section -->
|
||||
<section class="hero text-center text-white">
|
||||
<div class="container">
|
||||
<h1 class="display-3">O Futuro é Digital</h1>
|
||||
<p class="lead">Explore nossa coleção de produtos virtuais, e-books e cursos para a nova era.</p>
|
||||
<a href="#products" class="btn btn-primary btn-lg mt-3">Ver Produtos</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Featured Products Section -->
|
||||
<section id="products" class="py-5">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-5">Produtos em Destaque</h2>
|
||||
<div class="row">
|
||||
<!-- Product 1 -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<div class="card product-card h-100">
|
||||
<img src="https://picsum.photos/seed/product1/600/600" class="card-img-top" alt="Capa de um livro digital de ficção científica.">
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h5 class="card-title">E-book: Crônicas de Neo-Kyoto</h5>
|
||||
<p class="card-text flex-grow-1">Uma jornada imersiva pelas ruas de uma metrópole do futuro.</p>
|
||||
<p class="price">R$ 29,90</p>
|
||||
<button class="btn btn-secondary mt-auto">Adicionar ao Carrinho</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product 2 -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<div class="card product-card h-100">
|
||||
<img src="https://picsum.photos/seed/product2/600/600" class="card-img-top" alt="Arte de um curso online sobre desenvolvimento de jogos.">
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h5 class="card-title">Curso: Design Cyberpunk</h5>
|
||||
<p class="card-text flex-grow-1">Aprenda a criar visuais futuristas e interfaces neon.</p>
|
||||
<p class="price">R$ 199,90</p>
|
||||
<button class="btn btn-secondary mt-auto">Adicionar ao Carrinho</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product 3 -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<div class="card product-card h-100">
|
||||
<img src="https://picsum.photos/seed/product3/600/600" class="card-img-top" alt="Ícone de um pacote de assets virtuais.">
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h5 class="card-title">Pack: Assets 3D Sci-Fi</h5>
|
||||
<p class="card-text flex-grow-1">Modelos 3D de alta qualidade para seus projetos de jogos ou animação.</p>
|
||||
<p class="price">R$ 99,90</p>
|
||||
<button class="btn btn-secondary mt-auto">Adicionar ao Carrinho</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product 4 -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<div class="card product-card h-100">
|
||||
<img src="https://picsum.photos/seed/product4/600/600" class="card-img-top" alt="Imagem representativa de um e-book sobre programação.">
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h5 class="card-title">E-book: Código Quântico</h5>
|
||||
<p class="card-text flex-grow-1">Desvende os segredos da programação da próxima geração.</p>
|
||||
<p class="price">R$ 34,90</p>
|
||||
<button class="btn btn-secondary mt-auto">Adicionar ao Carrinho</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer text-center">
|
||||
<div class="container">
|
||||
<p>© <?php echo date("Y"); ?> VeNNom Academy. Todos os direitos reservados.</p>
|
||||
<p>
|
||||
<a href="#">Política de Privacidade</a> | <a href="#">Termos de Uso</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user