|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>AI Art Tools Enthusiast Hub | AnySue</title> |
|
<meta name="description" content="Free AI art tools including FLUX image generator, image background remover, and more. No need to sign up or buy credits."> |
|
<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@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700&display=swap" rel="stylesheet"> |
|
<style> |
|
:root { |
|
--primary: #6366f1; |
|
--primary-dark: #4f46e5; |
|
--secondary: #ec4899; |
|
--accent: #06b6d4; |
|
--bg: #0f0f0f; |
|
--bg-surface: #1a1a1a; |
|
--bg-surface-2: #2a2a2a; |
|
--text: #ffffff; |
|
--text-muted: #a1a1aa; |
|
--border: #333; |
|
--gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)); |
|
--shadow: 0 10px 30px rgba(0, 0, 0, 0.5); |
|
--shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3); |
|
} |
|
|
|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
font-family: 'Inter', sans-serif; |
|
background: var(--bg); |
|
color: var(--text); |
|
line-height: 1.6; |
|
overflow-x: hidden; |
|
} |
|
|
|
.container { |
|
max-width: 1200px; |
|
margin: 0 auto; |
|
padding: 0 20px; |
|
} |
|
|
|
|
|
header { |
|
position: fixed; |
|
top: 0; |
|
width: 100%; |
|
background: rgba(15, 15, 15, 0.9); |
|
backdrop-filter: blur(10px); |
|
border-bottom: 1px solid var(--border); |
|
z-index: 1000; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
nav { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
padding: 1rem 0; |
|
} |
|
|
|
.logo { |
|
display: flex; |
|
align-items: center; |
|
gap: 10px; |
|
font-family: 'Orbitron', monospace; |
|
font-size: 1.5rem; |
|
font-weight: 700; |
|
background: var(--gradient); |
|
-webkit-background-clip: text; |
|
-webkit-text-fill-color: transparent; |
|
background-clip: text; |
|
} |
|
|
|
.logo img { |
|
height: 40px; |
|
filter: brightness(0) invert(1); |
|
} |
|
|
|
.nav-links { |
|
display: flex; |
|
gap: 2rem; |
|
list-style: none; |
|
} |
|
|
|
.nav-links a { |
|
color: var(--text-muted); |
|
text-decoration: none; |
|
font-weight: 500; |
|
transition: color 0.3s ease; |
|
position: relative; |
|
} |
|
|
|
.nav-links a:hover { |
|
color: var(--primary); |
|
} |
|
|
|
.nav-links a::after { |
|
content: ''; |
|
position: absolute; |
|
bottom: -5px; |
|
left: 0; |
|
width: 0; |
|
height: 2px; |
|
background: var(--gradient); |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-links a:hover::after { |
|
width: 100%; |
|
} |
|
|
|
|
|
.hero { |
|
min-height: 100vh; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
text-align: center; |
|
background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%), |
|
linear-gradient(to bottom, var(--bg), var(--bg-surface)); |
|
padding-top: 80px; |
|
} |
|
|
|
.hero-content h1 { |
|
font-family: 'Orbitron', monospace; |
|
font-size: clamp(2.5rem, 5vw, 4rem); |
|
font-weight: 700; |
|
margin-bottom: 1rem; |
|
background: var(--gradient); |
|
-webkit-background-clip: text; |
|
-webkit-background-fill-color: transparent; |
|
background-clip: text; |
|
-webkit-text-fill-color: transparent; |
|
} |
|
|
|
.hero-content p { |
|
font-size: 1.25rem; |
|
color: var(--text-muted); |
|
margin-bottom: 2rem; |
|
max-width: 600px; |
|
margin-left: auto; |
|
margin-right: auto; |
|
} |
|
|
|
.cta-buttons { |
|
display: flex; |
|
gap: 1rem; |
|
justify-content: center; |
|
flex-wrap: wrap; |
|
} |
|
|
|
.btn { |
|
display: inline-block; |
|
padding: 12px 32px; |
|
border-radius: 50px; |
|
text-decoration: none; |
|
font-weight: 600; |
|
transition: all 0.3s ease; |
|
cursor: pointer; |
|
border: none; |
|
font-size: 1rem; |
|
} |
|
|
|
.btn-primary { |
|
background: var(--gradient); |
|
color: white; |
|
box-shadow: var(--shadow-glow); |
|
} |
|
|
|
.btn-primary:hover { |
|
transform: translateY(-2px); |
|
box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4); |
|
} |
|
|
|
.btn-secondary { |
|
background: transparent; |
|
color: var(--primary); |
|
border: 2px solid var(--primary); |
|
} |
|
|
|
.btn-secondary:hover { |
|
background: var(--primary); |
|
color: white; |
|
transform: translateY(-2px); |
|
} |
|
|
|
|
|
.features { |
|
padding: 100px 0; |
|
background: var(--bg-surface); |
|
} |
|
|
|
.section-title { |
|
text-align: center; |
|
margin-bottom: 3rem; |
|
} |
|
|
|
.section-title h2 { |
|
font-family: 'Orbitron', monospace; |
|
font-size: 2.5rem; |
|
margin-bottom: 1rem; |
|
background: var(--gradient); |
|
-webkit-background-clip: text; |
|
-webkit-background-fill-color: transparent; |
|
background-clip: text; |
|
-webkit-text-fill-color: transparent; |
|
} |
|
|
|
.features-grid { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
|
gap: 2rem; |
|
margin-top: 3rem; |
|
} |
|
|
|
.feature-card { |
|
background: var(--bg-surface-2); |
|
border: 1px solid var(--border); |
|
border-radius: 20px; |
|
padding: 2rem; |
|
text-align: center; |
|
transition: all 0.3s ease; |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
.feature-card::before { |
|
content: ''; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
height: 3px; |
|
background: var(--gradient); |
|
transform: scaleX(0); |
|
transition: transform 0.3s ease; |
|
} |
|
|
|
.feature-card:hover { |
|
transform: translateY(-5px); |
|
box-shadow: var(--shadow); |
|
} |
|
|
|
.feature-card:hover::before { |
|
transform: scaleX(1); |
|
} |
|
|
|
.feature-icon { |
|
width: 80px; |
|
height: 80px; |
|
margin: 0 auto 1rem; |
|
background: var(--gradient); |
|
border-radius: 50%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 2rem; |
|
} |
|
|
|
.feature-card h3 { |
|
font-size: 1.5rem; |
|
margin-bottom: 1rem; |
|
color: var(--text); |
|
} |
|
|
|
.feature-card p { |
|
color: var(--text-muted); |
|
line-height: 1.8; |
|
} |
|
|
|
|
|
.tools { |
|
padding: 100px 0; |
|
background: var(--bg); |
|
} |
|
|
|
.tools-grid { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); |
|
gap: 2rem; |
|
margin-top: 3rem; |
|
} |
|
|
|
.tool-card { |
|
background: var(--bg-surface); |
|
border: 1px solid var(--border); |
|
border-radius: 15px; |
|
padding: 2rem; |
|
transition: all 0.3s ease; |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
.tool-card:hover { |
|
transform: scale(1.02); |
|
box-shadow: var(--shadow); |
|
} |
|
|
|
.tool-image { |
|
width: 100%; |
|
height: 200px; |
|
object-fit: cover; |
|
border-radius: 10px; |
|
margin-bottom: 1rem; |
|
} |
|
|
|
.tool-card h3 { |
|
font-size: 1.5rem; |
|
margin-bottom: 0.5rem; |
|
color: var(--primary); |
|
} |
|
|
|
.tool-card p { |
|
color: var(--text-muted); |
|
margin-bottom: 1rem; |
|
} |
|
|
|
.tool-meta { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
margin-top: 1rem; |
|
padding-top: 1rem; |
|
border-top: 1px solid var(--border); |
|
} |
|
|
|
.price { |
|
font-size: 1.25rem; |
|
color: var(--secondary); |
|
font-weight: 600; |
|
} |
|
|
|
|
|
footer { |
|
background: var(--bg-surface); |
|
border-top: 1px solid var(--border); |
|
padding: 50px 0 20px; |
|
text-align: center; |
|
} |
|
|
|
.footer-content { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
|
gap: 2rem; |
|
margin-bottom: 2rem; |
|
} |
|
|
|
.footer-section h3 { |
|
color: var(--primary); |
|
margin-bottom: 1rem; |
|
} |
|
|
|
.footer-section a { |
|
color: var(--text-muted); |
|
text-decoration: none; |
|
display: block; |
|
margin-bottom: 0.5rem; |
|
transition: color 0.3s ease; |
|
} |
|
|
|
.footer-section a:hover { |
|
color: var(--primary); |
|
} |
|
|
|
.footer-bottom { |
|
padding-top: 2rem; |
|
border-top: 1px solid var(--border); |
|
color: var(--text-muted); |
|
} |
|
|
|
|
|
@media (max-width: 768px) { |
|
.nav-links { |
|
display: none; |
|
} |
|
|
|
.hero-content h1 { |
|
font-size: 2.5rem; |
|
} |
|
|
|
.features-grid, |
|
.tools-grid { |
|
grid-template-columns: 1fr; |
|
} |
|
|
|
.cta-buttons { |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
|
|
.btn { |
|
width: 100%; |
|
max-width: 300px; |
|
} |
|
} |
|
|
|
|
|
@keyframes fadeIn { |
|
from { |
|
opacity: 0; |
|
transform: translateY(20px); |
|
} |
|
to { |
|
opacity: 1; |
|
transform: translateY(0); |
|
} |
|
} |
|
|
|
.animate { |
|
animation: fadeIn 0.6s ease forwards; |
|
} |
|
|
|
|
|
.mobile-menu-toggle { |
|
display: none; |
|
flex-direction: column; |
|
cursor: pointer; |
|
} |
|
|
|
.mobile-menu-toggle span { |
|
width: 25px; |
|
height: 3px; |
|
background: var(--text); |
|
margin: 3px 0; |
|
transition: 0.3s; |
|
} |
|
|
|
@media (max-width: 768px) { |
|
.mobile-menu-toggle { |
|
display: flex; |
|
} |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<header> |
|
<nav class="container"> |
|
<a href="/" class="logo"> |
|
<img src="https://assets.nicepagecdn.com/9ba6e1f3/6272947/images/ASLOGONOTHER.png" alt="AnySue Logo"> |
|
AnySue |
|
</a> |
|
<ul class="nav-links"> |
|
<li><a href="#tools">Tools</a></li> |
|
<li><a href="#features">Features</a></li> |
|
<li><a href="#pricing">Pricing</a></li> |
|
<li><a href="#about">About</a></li> |
|
<li><a href="#contact">Contact</a></li> |
|
</ul> |
|
<div class="mobile-menu-toggle"> |
|
<span></span> |
|
<span></span> |
|
<span></span> |
|
</div> |
|
</nav> |
|
</header> |
|
|
|
<section class="hero"> |
|
<div class="container"> |
|
<div class="hero-content animate"> |
|
<h1>AI Art Tools Enthusiast Hub</h1> |
|
<p>Discover cutting-edge AI art tools including FLUX image generator, background remover, and more. No signup required, no credits needed. Just create.</p> |
|
<div class="cta-buttons"> |
|
<a href="#tools" class="btn btn-primary">Start Creating</a> |
|
<a href="#features" class="btn btn-secondary">Learn More</a> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
<section class="features" id="features"> |
|
<div class="container"> |
|
<div class="section-title animate"> |
|
<h2>Why Choose AnySue</h2> |
|
<p>Experience the future of AI-powered creativity with our comprehensive toolkit</p> |
|
</div> |
|
<div class="features-grid"> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">🎨</div> |
|
<h3>FLUX Image Generator</h3> |
|
<p>Generate stunning, high-quality images using our advanced FLUX AI model. Create anything you can imagine.</p> |
|
</div> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">✂️</div> |
|
<h3>Background Remover</h3> |
|
<p>Instantly remove backgrounds from any image with precision. Perfect for creating professional content.</p> |
|
</div> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">⚡</div> |
|
<h3>No Signup Required</h3> |
|
<p>Get started immediately without creating an account or providing personal information. Pure creativity.</p> |
|
</div> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">💳</div> |
|
<h3>Free Credits</h3> |
|
<p>Enjoy unlimited use without worrying about credits. All tools are completely free to use.</p> |
|
</div> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">🚀</div> |
|
<h3>Fast Processing</h3> |
|
<p>Get your results in seconds with our optimized AI models and high-performance infrastructure.</p> |
|
</div> |
|
<div class="feature-card animate"> |
|
<div class="feature-icon">🎯</div> |
|
<h3>Prompt Library</h3> |
|
<p>Access a curated collection of prompts to spark your creativity and get better results.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
<section class="tools" id="tools"> |
|
<div class="container"> |
|
<div class="section-title animate"> |
|
<h2>Popular AI Tools</h2> |
|
<p>Explore our most used AI-powered creative tools</p> |
|
</div> |
|
<div class="tools-grid"> |
|
<div class="tool-card animate"> |
|
<img src="https://assets.nicepagecdn.com/9ba6e1f3/6272947/images/astroblue.jpg" alt="FLUX Image Generator" class="tool-image"> |
|
<h3>FLUX Image Generator</h3> |
|
<p>Create breathtaking images with our state-of-the-art FLUX AI model. Perfect for artists, designers, and content creators.</p> |
|
<div class="tool-meta"> |
|
<span class="price">Free</span> |
|
<a href="#" class="btn btn-secondary">Try Now</a> |
|
</div> |
|
</div> |
|
<div class="tool-card animate"> |
|
<img src="https://assets.nicepagecdn.com/9ba6e1f3/6272947/images/artguy.png" alt="Background Remover" class="tool-image"> |
|
<h3>Background Remover</h3> |
|
<p>Remove backgrounds from images instantly with AI precision. Ideal for e-commerce, portraits, and graphic design.</p> |
|
<div class="tool-meta"> |
|
<span class="price">Free</span> |
|
<a href="#" class="btn btn-secondary">Try Now</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
<footer> |
|
<div class="container"> |
|
<div class="footer-content"> |
|
<div class="footer-section"> |
|
<h3>Quick Links</h3> |
|
<a href="#tools">AI Tools</a> |
|
<a href="#features">Features</a> |
|
<a href="#pricing">Pricing</a> |
|
</div> |
|
<div class="footer-section"> |
|
<h3>Tools</h3> |
|
<a href="#">FLUX Generator</a> |
|
<a href="#">Background Remover</a> |
|
<a href="#">Prompt Library</a> |
|
</div> |
|
<div class="footer-section"> |
|
<h3>Support</h3> |
|
<a href="#">Help Center</a> |
|
<a href="#">Contact Us</a> |
|
<a href="#">Community</a> |
|
</div> |
|
</div> |
|
<div class="footer-bottom"> |
|
<p>© 2024 AnySue. All rights reserved. Free AI art tools for everyone.</p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
const target = document.querySelector(this.getAttribute('href')); |
|
if (target) { |
|
target.scrollIntoView({ |
|
behavior: 'smooth', |
|
block: 'start' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const observerOptions = { |
|
threshold: 0.1, |
|
rootMargin: '0px 0px -50px 0px' |
|
}; |
|
|
|
const observer = new IntersectionObserver((entries) => { |
|
entries.forEach(entry => { |
|
if (entry.isIntersecting) { |
|
entry.target.classList.add('animate'); |
|
} |
|
}); |
|
}, observerOptions); |
|
|
|
document.querySelectorAll('.feature-card, .tool-card, .section-title').forEach(el => { |
|
observer.observe(el); |
|
}); |
|
|
|
|
|
window.addEventListener('scroll', () => { |
|
const header = document.querySelector('header'); |
|
if (window.scrollY > 100) { |
|
header.style.background = 'rgba(15, 15, 15, 0.95)'; |
|
} else { |
|
header.style.background = 'rgba(15, 15, 15, 0.9)'; |
|
} |
|
}); |
|
|
|
|
|
const mobileToggle = document.querySelector('.mobile-menu-toggle'); |
|
const navLinks = document.querySelector('.nav-links'); |
|
|
|
if (mobileToggle) { |
|
mobileToggle.addEventListener('click', () => { |
|
navLinks.classList.toggle('active'); |
|
}); |
|
} |
|
</script> |
|
</body> |
|
</html> |