Spaces:
Running
Running
optimieren durch ein qualitatif hochwertiges Premium GlowUp
Browse files- README.md +7 -4
- components/footer.js +104 -0
- components/navbar.js +95 -0
- index.html +236 -19
- script.js +36 -0
- style.css +39 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
colorFrom: indigo
|
| 5 |
colorTo: blue
|
|
|
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: GlowUp Premium Optimizer ✨
|
| 3 |
+
colorFrom: gray
|
|
|
|
| 4 |
colorTo: blue
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.footer-link:hover {
|
| 7 |
+
color: #6366F1;
|
| 8 |
+
transform: translateX(4px);
|
| 9 |
+
}
|
| 10 |
+
.footer-link {
|
| 11 |
+
transition: all 0.2s ease;
|
| 12 |
+
}
|
| 13 |
+
.social-icon:hover {
|
| 14 |
+
transform: translateY(-3px);
|
| 15 |
+
color: #6366F1;
|
| 16 |
+
}
|
| 17 |
+
.social-icon {
|
| 18 |
+
transition: all 0.2s ease;
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
+
<footer class="bg-gray-50 border-t border-gray-200">
|
| 22 |
+
<div class="container mx-auto px-6 py-12">
|
| 23 |
+
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 24 |
+
<!-- Logo and description -->
|
| 25 |
+
<div>
|
| 26 |
+
<div class="text-2xl font-bold text-primary mb-4">
|
| 27 |
+
Glow<span class="text-secondary">Up</span>
|
| 28 |
+
</div>
|
| 29 |
+
<p class="text-gray-600 mb-4">
|
| 30 |
+
Premium optimization for a radiant, elevated experience.
|
| 31 |
+
</p>
|
| 32 |
+
<div class="flex space-x-4">
|
| 33 |
+
<a href="#" class="social-icon text-gray-600 hover:text-primary">
|
| 34 |
+
<i data-feather="twitter"></i>
|
| 35 |
+
</a>
|
| 36 |
+
<a href="#" class="social-icon text-gray-600 hover:text-primary">
|
| 37 |
+
<i data-feather="facebook"></i>
|
| 38 |
+
</a>
|
| 39 |
+
<a href="#" class="social-icon text-gray-600 hover:text-primary">
|
| 40 |
+
<i data-feather="instagram"></i>
|
| 41 |
+
</a>
|
| 42 |
+
<a href="#" class="social-icon text-gray-600 hover:text-primary">
|
| 43 |
+
<i data-feather="linkedin"></i>
|
| 44 |
+
</a>
|
| 45 |
+
</div>
|
| 46 |
+
</div>
|
| 47 |
+
|
| 48 |
+
<!-- Quick Links -->
|
| 49 |
+
<div>
|
| 50 |
+
<h3 class="text-lg font-semibold text-gray-900 mb-4">Quick Links</h3>
|
| 51 |
+
<ul class="space-y-2">
|
| 52 |
+
<li><a href="#" class="footer-link text-gray-600">Home</a></li>
|
| 53 |
+
<li><a href="#features" class="footer-link text-gray-600">Features</a></li>
|
| 54 |
+
<li><a href="#pricing" class="footer-link text-gray-600">Pricing</a></li>
|
| 55 |
+
<li><a href="#" class="footer-link text-gray-600">Testimonials</a></li>
|
| 56 |
+
</ul>
|
| 57 |
+
</div>
|
| 58 |
+
|
| 59 |
+
<!-- Resources -->
|
| 60 |
+
<div>
|
| 61 |
+
<h3 class="text-lg font-semibold text-gray-900 mb-4">Resources</h3>
|
| 62 |
+
<ul class="space-y-2">
|
| 63 |
+
<li><a href="#" class="footer-link text-gray-600">Blog</a></li>
|
| 64 |
+
<li><a href="#" class="footer-link text-gray-600">Documentation</a></li>
|
| 65 |
+
<li><a href="#" class="footer-link text-gray-600">Guides</a></li>
|
| 66 |
+
<li><a href="#" class="footer-link text-gray-600">Support</a></li>
|
| 67 |
+
</ul>
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
<!-- Newsletter -->
|
| 71 |
+
<div>
|
| 72 |
+
<h3 class="text-lg font-semibold text-gray-900 mb-4">Stay Updated</h3>
|
| 73 |
+
<p class="text-gray-600 mb-4">
|
| 74 |
+
Subscribe to our newsletter for the latest updates.
|
| 75 |
+
</p>
|
| 76 |
+
<form class="flex">
|
| 77 |
+
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
|
| 78 |
+
<button type="submit" class="bg-primary hover:bg-primary/90 text-white px-4 py-2 rounded-r-lg">
|
| 79 |
+
<i data-feather="send"></i>
|
| 80 |
+
</button>
|
| 81 |
+
</form>
|
| 82 |
+
</div>
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<div class="border-t border-gray-200 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 86 |
+
<p class="text-gray-600 mb-4 md:mb-0">
|
| 87 |
+
© 2023 GlowUp Premium. All rights reserved.
|
| 88 |
+
</p>
|
| 89 |
+
<div class="flex space-x-6">
|
| 90 |
+
<a href="#" class="text-gray-600 hover:text-primary">Terms</a>
|
| 91 |
+
<a href="#" class="text-gray-600 hover:text-primary">Privacy</a>
|
| 92 |
+
<a href="#" class="text-gray-600 hover:text-primary">Cookies</a>
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
</div>
|
| 96 |
+
</footer>
|
| 97 |
+
`;
|
| 98 |
+
|
| 99 |
+
// Replace icons after shadow DOM renders
|
| 100 |
+
setTimeout(() => feather.replace(), 100);
|
| 101 |
+
}
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.nav-link {
|
| 7 |
+
position: relative;
|
| 8 |
+
}
|
| 9 |
+
.nav-link::after {
|
| 10 |
+
content: '';
|
| 11 |
+
position: absolute;
|
| 12 |
+
bottom: -4px;
|
| 13 |
+
left: 0;
|
| 14 |
+
width: 0;
|
| 15 |
+
height: 2px;
|
| 16 |
+
background-color: #6366F1;
|
| 17 |
+
transition: width 0.3s ease;
|
| 18 |
+
}
|
| 19 |
+
.nav-link:hover::after {
|
| 20 |
+
width: 100%;
|
| 21 |
+
}
|
| 22 |
+
.mobile-menu {
|
| 23 |
+
max-height: 0;
|
| 24 |
+
overflow: hidden;
|
| 25 |
+
transition: max-height 0.3s ease-out;
|
| 26 |
+
}
|
| 27 |
+
.mobile-menu.open {
|
| 28 |
+
max-height: 500px;
|
| 29 |
+
transition: max-height 0.3s ease-in;
|
| 30 |
+
}
|
| 31 |
+
</style>
|
| 32 |
+
<nav class="bg-white shadow-sm">
|
| 33 |
+
<div class="container mx-auto px-6 py-4">
|
| 34 |
+
<div class="flex justify-between items-center">
|
| 35 |
+
<!-- Logo -->
|
| 36 |
+
<div class="text-2xl font-bold text-primary">
|
| 37 |
+
<a href="/">Glow<span class="text-secondary">Up</span></a>
|
| 38 |
+
</div>
|
| 39 |
+
|
| 40 |
+
<!-- Desktop Menu -->
|
| 41 |
+
<div class="hidden md:flex space-x-8">
|
| 42 |
+
<a href="#features" class="nav-link text-gray-700 hover:text-primary">Features</a>
|
| 43 |
+
<a href="#pricing" class="nav-link text-gray-700 hover:text-primary">Pricing</a>
|
| 44 |
+
<a href="#" class="nav-link text-gray-700 hover:text-primary">Resources</a>
|
| 45 |
+
<a href="#" class="nav-link text-gray-700 hover:text-primary">About</a>
|
| 46 |
+
</div>
|
| 47 |
+
|
| 48 |
+
<!-- Mobile menu button -->
|
| 49 |
+
<div class="md:hidden">
|
| 50 |
+
<button id="mobile-menu-button" class="text-gray-700 focus:outline-none">
|
| 51 |
+
<i data-feather="menu"></i>
|
| 52 |
+
</button>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
<!-- Desktop CTA Buttons -->
|
| 56 |
+
<div class="hidden md:flex items-center space-x-4">
|
| 57 |
+
<a href="#" class="text-gray-700 hover:text-primary font-medium">Log In</a>
|
| 58 |
+
<a href="#" class="bg-primary hover:bg-primary/90 text-white px-4 py-2 rounded-full font-medium transition duration-300">Sign Up</a>
|
| 59 |
+
</div>
|
| 60 |
+
</div>
|
| 61 |
+
|
| 62 |
+
<!-- Mobile Menu -->
|
| 63 |
+
<div id="mobile-menu" class="mobile-menu md:hidden mt-4">
|
| 64 |
+
<div class="flex flex-col space-y-4 px-2 py-3">
|
| 65 |
+
<a href="#features" class="block text-gray-700 hover:text-primary">Features</a>
|
| 66 |
+
<a href="#pricing" class="block text-gray-700 hover:text-primary">Pricing</a>
|
| 67 |
+
<a href="#" class="block text-gray-700 hover:text-primary">Resources</a>
|
| 68 |
+
<a href="#" class="block text-gray-700 hover:text-primary">About</a>
|
| 69 |
+
<div class="border-t border-gray-200 pt-4 mt-2">
|
| 70 |
+
<a href="#" class="block text-gray-700 hover:text-primary mb-3">Log In</a>
|
| 71 |
+
<a href="#" class="inline-block bg-primary hover:bg-primary/90 text-white px-4 py-2 rounded-full font-medium transition duration-300">Sign Up</a>
|
| 72 |
+
</div>
|
| 73 |
+
</div>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
</nav>
|
| 77 |
+
`;
|
| 78 |
+
|
| 79 |
+
// Mobile menu functionality
|
| 80 |
+
const menuButton = this.shadowRoot.getElementById('mobile-menu-button');
|
| 81 |
+
const mobileMenu = this.shadowRoot.getElementById('mobile-menu');
|
| 82 |
+
|
| 83 |
+
menuButton.addEventListener('click', () => {
|
| 84 |
+
mobileMenu.classList.contains('open')
|
| 85 |
+
? mobileMenu.classList.remove('open')
|
| 86 |
+
: mobileMenu.classList.add('open');
|
| 87 |
+
feather.replace();
|
| 88 |
+
});
|
| 89 |
+
|
| 90 |
+
// Replace icons after shadow DOM renders
|
| 91 |
+
setTimeout(() => feather.replace(), 100);
|
| 92 |
+
}
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,236 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>GlowUp Premium Optimizer</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script src="components/navbar.js"></script>
|
| 12 |
+
<script src="components/footer.js"></script>
|
| 13 |
+
<script>
|
| 14 |
+
tailwind.config = {
|
| 15 |
+
theme: {
|
| 16 |
+
extend: {
|
| 17 |
+
colors: {
|
| 18 |
+
primary: '#6366F1',
|
| 19 |
+
secondary: '#A5B4FC',
|
| 20 |
+
glow: '#E0E7FF',
|
| 21 |
+
}
|
| 22 |
+
}
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
+
</script>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="bg-gray-50 min-h-screen flex flex-col">
|
| 28 |
+
<custom-navbar></custom-navbar>
|
| 29 |
+
|
| 30 |
+
<main class="flex-grow">
|
| 31 |
+
<!-- Hero Section -->
|
| 32 |
+
<section class="relative bg-gradient-to-br from-primary to-secondary py-20">
|
| 33 |
+
<div class="container mx-auto px-6 text-center">
|
| 34 |
+
<h1 class="text-5xl md:text-6xl font-bold text-white mb-6">GlowUp Your Life</h1>
|
| 35 |
+
<p class="text-xl text-glow mb-8 max-w-2xl mx-auto">Premium optimization for a radiant, elevated experience</p>
|
| 36 |
+
<div class="flex justify-center gap-4">
|
| 37 |
+
<a href="#features" class="bg-white text-primary hover:bg-glow px-8 py-3 rounded-full font-medium transition duration-300">Explore</a>
|
| 38 |
+
<a href="#pricing" class="border-2 border-white text-white hover:bg-white hover:text-primary px-8 py-3 rounded-full font-medium transition duration-300">Get Premium</a>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
<div class="absolute bottom-0 w-full h-16 bg-gradient-to-t from-gray-50 to-transparent"></div>
|
| 42 |
+
</section>
|
| 43 |
+
|
| 44 |
+
<!-- Features Section -->
|
| 45 |
+
<section id="features" class="py-20 bg-white">
|
| 46 |
+
<div class="container mx-auto px-6">
|
| 47 |
+
<div class="text-center mb-16">
|
| 48 |
+
<h2 class="text-4xl font-bold text-gray-900 mb-4">Premium Features</h2>
|
| 49 |
+
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Our exclusive tools designed to amplify your potential</p>
|
| 50 |
+
</div>
|
| 51 |
+
|
| 52 |
+
<div class="grid md:grid-cols-3 gap-8">
|
| 53 |
+
<!-- Feature 1 -->
|
| 54 |
+
<div class="bg-gray-50 rounded-xl p-8 hover:shadow-lg transition duration-300">
|
| 55 |
+
<div class="bg-glow w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
| 56 |
+
<i data-feather="zap" class="text-primary w-8 h-8"></i>
|
| 57 |
+
</div>
|
| 58 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Instant Boost</h3>
|
| 59 |
+
<p class="text-gray-600">Get an immediate performance enhancement with our patented optimization algorithms.</p>
|
| 60 |
+
</div>
|
| 61 |
+
|
| 62 |
+
<!-- Feature 2 -->
|
| 63 |
+
<div class="bg-gray-50 rounded-xl p-8 hover:shadow-lg transition duration-300">
|
| 64 |
+
<div class="bg-glow w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
| 65 |
+
<i data-feather="trending-up" class="text-primary w-8 h-8"></i>
|
| 66 |
+
</div>
|
| 67 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Sustainable Growth</h3>
|
| 68 |
+
<p class="text-gray-600">Long-term improvements that compound over time for lasting results.</p>
|
| 69 |
+
</div>
|
| 70 |
+
|
| 71 |
+
<!-- Feature 3 -->
|
| 72 |
+
<div class="bg-gray-50 rounded-xl p-8 hover:shadow-lg transition duration-300">
|
| 73 |
+
<div class="bg-glow w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
| 74 |
+
<i data-feather="shield" class="text-primary w-8 h-8"></i>
|
| 75 |
+
</div>
|
| 76 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Premium Protection</h3>
|
| 77 |
+
<p class="text-gray-600">Exclusive safeguards to maintain your optimized state against external factors.</p>
|
| 78 |
+
</div>
|
| 79 |
+
</div>
|
| 80 |
+
</div>
|
| 81 |
+
</section>
|
| 82 |
+
|
| 83 |
+
<!-- Testimonials -->
|
| 84 |
+
<section class="py-20 bg-gray-50">
|
| 85 |
+
<div class="container mx-auto px-6">
|
| 86 |
+
<div class="text-center mb-16">
|
| 87 |
+
<h2 class="text-4xl font-bold text-gray-900 mb-4">Radiant Results</h2>
|
| 88 |
+
<p class="text-lg text-gray-600 max-w-2xl mx-auto">What our premium members say about their GlowUp</p>
|
| 89 |
+
</div>
|
| 90 |
+
|
| 91 |
+
<div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
|
| 92 |
+
<!-- Testimonial 1 -->
|
| 93 |
+
<div class="bg-white p-8 rounded-xl shadow-sm">
|
| 94 |
+
<div class="flex items-center mb-4">
|
| 95 |
+
<img src="http://static.photos/people/200x200/1" alt="Alex Morgan" class="w-12 h-12 rounded-full mr-4 object-cover">
|
| 96 |
+
<div>
|
| 97 |
+
<h4 class="font-bold text-gray-900">Alex Morgan</h4>
|
| 98 |
+
<p class="text-primary text-sm">Premium Member</p>
|
| 99 |
+
</div>
|
| 100 |
+
</div>
|
| 101 |
+
<p class="text-gray-600">"The GlowUp transformation was incredible. I saw immediate improvements in my daily performance and the effects just keep getting better."</p>
|
| 102 |
+
</div>
|
| 103 |
+
|
| 104 |
+
<!-- Testimonial 2 -->
|
| 105 |
+
<div class="bg-white p-8 rounded-xl shadow-sm">
|
| 106 |
+
<div class="flex items-center mb-4">
|
| 107 |
+
<img src="http://static.photos/people/200x200/2" alt="Jordan Taylor" class="w-12 h-12 rounded-full mr-4 object-cover">
|
| 108 |
+
<div>
|
| 109 |
+
<h4 class="font-bold text-gray-900">Jordan Taylor</h4>
|
| 110 |
+
<p class="text-primary text-sm">Enterprise User</p>
|
| 111 |
+
</div>
|
| 112 |
+
</div>
|
| 113 |
+
<p class="text-gray-600">"Our whole team uses GlowUp Premium and we've seen productivity increases across all metrics. Worth every penny of the investment."</p>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
</section>
|
| 118 |
+
|
| 119 |
+
<!-- Pricing -->
|
| 120 |
+
<section id="pricing" class="py-20 bg-white">
|
| 121 |
+
<div class="container mx-auto px-6">
|
| 122 |
+
<div class="text-center mb-16">
|
| 123 |
+
<h2 class="text-4xl font-bold text-gray-900 mb-4">Choose Your Glow</h2>
|
| 124 |
+
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Select the perfect plan for your optimization needs</p>
|
| 125 |
+
</div>
|
| 126 |
+
|
| 127 |
+
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
|
| 128 |
+
<!-- Basic -->
|
| 129 |
+
<div class="border border-gray-200 rounded-xl p-8 transition hover:shadow-lg duration-300">
|
| 130 |
+
<div class="mb-6">
|
| 131 |
+
<h3 class="text-xl font-bold text-gray-900 mb-1">Starter</h3>
|
| 132 |
+
<p class="text-gray-600">For those beginning their GlowUp journey</p>
|
| 133 |
+
</div>
|
| 134 |
+
<div class="mb-6">
|
| 135 |
+
<span class="text-4xl font-bold text-gray-900">$19</span>
|
| 136 |
+
<span class="text-gray-600">/month</span>
|
| 137 |
+
</div>
|
| 138 |
+
<ul class="mb-8 space-y-3">
|
| 139 |
+
<li class="flex items-center text-gray-600">
|
| 140 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 141 |
+
Core optimization features
|
| 142 |
+
</li>
|
| 143 |
+
<li class="flex items-center text-gray-600">
|
| 144 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 145 |
+
Daily performance tracking
|
| 146 |
+
</li>
|
| 147 |
+
<li class="flex items-center text-gray-600">
|
| 148 |
+
<i data-feather="x" class="w-4 h-4 mr-2 text-gray-400"></i>
|
| 149 |
+
Premium analytics
|
| 150 |
+
</li>
|
| 151 |
+
</ul>
|
| 152 |
+
<a href="#" class="block text-center border-2 border-primary text-primary hover:bg-primary hover:text-white px-6 py-3 rounded-full font-medium transition duration-300">Get Started</a>
|
| 153 |
+
</div>
|
| 154 |
+
|
| 155 |
+
<!-- Premium -->
|
| 156 |
+
<div class="border-2 border-primary rounded-xl p-8 shadow-lg relative bg-gradient-to-b from-white to-glow/20">
|
| 157 |
+
<div class="absolute top-0 right-0 bg-primary text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">POPULAR</div>
|
| 158 |
+
<div class="mb-6">
|
| 159 |
+
<h3 class="text-xl font-bold text-gray-900 mb-1">Premium</h3>
|
| 160 |
+
<p class="text-gray-600">Complete optimization package</p>
|
| 161 |
+
</div>
|
| 162 |
+
<div class="mb-6">
|
| 163 |
+
<span class="text-4xl font-bold text-gray-900">$49</span>
|
| 164 |
+
<span class="text-gray-600">/month</span>
|
| 165 |
+
</div>
|
| 166 |
+
<ul class="mb-8 space-y-3">
|
| 167 |
+
<li class="flex items-center text-gray-600">
|
| 168 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 169 |
+
Full feature access
|
| 170 |
+
</li>
|
| 171 |
+
<li class="flex items-center text-gray-600">
|
| 172 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 173 |
+
Real-time monitoring
|
| 174 |
+
</li>
|
| 175 |
+
<li class="flex items-center text-gray-600">
|
| 176 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 177 |
+
Advanced analytics
|
| 178 |
+
</li>
|
| 179 |
+
<li class="flex items-center text-gray-600">
|
| 180 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 181 |
+
Priority support
|
| 182 |
+
</li>
|
| 183 |
+
</ul>
|
| 184 |
+
<a href="#" class="block text-center bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-full font-medium transition duration-300">Choose Premium</a>
|
| 185 |
+
</div>
|
| 186 |
+
|
| 187 |
+
<!-- Enterprise -->
|
| 188 |
+
<div class="border border-gray-200 rounded-xl p-8 transition hover:shadow-lg duration-300">
|
| 189 |
+
<div class="mb-6">
|
| 190 |
+
<h3 class="text-xl font-bold text-gray-900 mb-1">Enterprise</h3>
|
| 191 |
+
<p class="text-gray-600">Tailored solutions for organizations</p>
|
| 192 |
+
</div>
|
| 193 |
+
<div class="mb-6">
|
| 194 |
+
<span class="text-4xl font-bold text-gray-900">Custom</span>
|
| 195 |
+
</div>
|
| 196 |
+
<ul class="mb-8 space-y-3">
|
| 197 |
+
<li class="flex items-center text-gray-600">
|
| 198 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 199 |
+
Unlimited access
|
| 200 |
+
</li>
|
| 201 |
+
<li class="flex items-center text-gray-600">
|
| 202 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 203 |
+
Dedicated account manager
|
| 204 |
+
</li>
|
| 205 |
+
<li class="flex items-center text-gray-600">
|
| 206 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 207 |
+
Custom integrations
|
| 208 |
+
</li>
|
| 209 |
+
<li class="flex items-center text-gray-600">
|
| 210 |
+
<i data-feather="check" class="w-4 h-4 mr-2 text-primary"></i>
|
| 211 |
+
Enterprise security
|
| 212 |
+
</li>
|
| 213 |
+
</ul>
|
| 214 |
+
<a href="#" class="block text-center border-2 border-primary text-primary hover:bg-primary hover:text-white px-6 py-3 rounded-full font-medium transition duration-300">Contact Sales</a>
|
| 215 |
+
</div>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
</section>
|
| 219 |
+
|
| 220 |
+
<!-- CTA -->
|
| 221 |
+
<section class="py-16 bg-gradient-to-r from-primary to-secondary">
|
| 222 |
+
<div class="container mx-auto px-6 text-center">
|
| 223 |
+
<h2 class="text-3xl font-bold text-white mb-6">Ready for Your Premium GlowUp?</h2>
|
| 224 |
+
<p class="text-xl text-glow mb-8 max-w-2xl mx-auto">Join thousands experiencing the optimization revolution</p>
|
| 225 |
+
<a href="#" class="inline-block bg-white text-primary hover:bg-glow px-8 py-3 rounded-full font-medium transition duration-300">Start Free Trial</a>
|
| 226 |
+
</div>
|
| 227 |
+
</section>
|
| 228 |
+
</main>
|
| 229 |
+
|
| 230 |
+
<custom-footer></custom-footer>
|
| 231 |
+
|
| 232 |
+
<script src="script.js"></script>
|
| 233 |
+
<script>feather.replace();</script>
|
| 234 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 235 |
+
</body>
|
| 236 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Main JavaScript functionality
|
| 2 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 3 |
+
// Smooth scrolling for anchor links
|
| 4 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 5 |
+
anchor.addEventListener('click', function (e) {
|
| 6 |
+
e.preventDefault();
|
| 7 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
| 8 |
+
behavior: 'smooth'
|
| 9 |
+
});
|
| 10 |
+
});
|
| 11 |
+
});
|
| 12 |
+
|
| 13 |
+
// Animation triggers when elements come into view
|
| 14 |
+
const animateOnScroll = () => {
|
| 15 |
+
const elements = document.querySelectorAll('.feature, .testimonial, .pricing-card');
|
| 16 |
+
|
| 17 |
+
elements.forEach(el => {
|
| 18 |
+
const elementPosition = el.getBoundingClientRect().top;
|
| 19 |
+
const screenPosition = window.innerHeight / 1.3;
|
| 20 |
+
|
| 21 |
+
if(elementPosition < screenPosition) {
|
| 22 |
+
el.classList.add('opacity-100', 'translate-y-0');
|
| 23 |
+
el.classList.remove('opacity-0', 'translate-y-6');
|
| 24 |
+
}
|
| 25 |
+
});
|
| 26 |
+
};
|
| 27 |
+
|
| 28 |
+
// Initialize elements with animation classes
|
| 29 |
+
document.querySelectorAll('.feature, .testimonial, .pricing-card').forEach(el => {
|
| 30 |
+
el.classList.add('transition-all', 'duration-500', 'ease-out', 'opacity-0', 'translate-y-6');
|
| 31 |
+
});
|
| 32 |
+
|
| 33 |
+
// Run on load and on scroll
|
| 34 |
+
animateOnScroll();
|
| 35 |
+
window.addEventListener('scroll', animateOnScroll);
|
| 36 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Custom styles that extend Tailwind */
|
| 2 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 3 |
+
|
| 4 |
body {
|
| 5 |
+
font-family: 'Inter', sans-serif;
|
| 6 |
+
color: #1F2937;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
/* Custom animation for glow effect */
|
| 10 |
+
@keyframes subtleGlow {
|
| 11 |
+
0%, 100% {
|
| 12 |
+
box-shadow: 0 0 0 rgba(224, 231, 255, 0);
|
| 13 |
+
}
|
| 14 |
+
50% {
|
| 15 |
+
box-shadow: 0 0 20px rgba(224, 231, 255, 0.6);
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.glow-animate {
|
| 20 |
+
animation: subtleGlow 3s ease-in-out infinite;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
/* Custom transition effects */
|
| 24 |
+
.smooth-transition {
|
| 25 |
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
| 26 |
}
|
| 27 |
|
| 28 |
+
/* Dark mode placeholder in case we implement it later */
|
| 29 |
+
.dark .dark\:bg-primary-dark {
|
| 30 |
+
background-color: #4F46E5;
|
| 31 |
}
|
| 32 |
|
| 33 |
+
/* Custom scrollbar */
|
| 34 |
+
::-webkit-scrollbar {
|
| 35 |
+
width: 8px;
|
|
|
|
|
|
|
| 36 |
}
|
| 37 |
|
| 38 |
+
::-webkit-scrollbar-track {
|
| 39 |
+
background: #E5E7EB;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
}
|
| 41 |
|
| 42 |
+
::-webkit-scrollbar-thumb {
|
| 43 |
+
background: #A5B4FC;
|
| 44 |
+
border-radius: 4px;
|
| 45 |
}
|
| 46 |
+
|
| 47 |
+
::-webkit-scrollbar-thumb:hover {
|
| 48 |
+
background: #818CF8;
|
| 49 |
+
}
|