277 lines
13 KiB
HTML
Executable File
277 lines
13 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Template Site Pro - Demo</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #1a1a2e; color: #eee; }
|
|
|
|
/* Navigation */
|
|
header { background: #16213e; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 100; }
|
|
header .container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
|
|
header h1 { color: #00d9ff; font-size: 22px; font-weight: bold; }
|
|
header nav a { color: #aaa; margin-left: 25px; text-decoration: none; font-size: 14px; transition: color 0.3s; }
|
|
header nav a:hover { color: #fff; }
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: 150px 20px 100px;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
min-height: 80vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.hero h2 { font-size: 56px; margin-bottom: 20px; background: linear-gradient(90deg, #00d9ff, #e94560); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
|
.hero .subtitle { font-size: 20px; color: #888; margin-bottom: 40px; max-width: 600px; }
|
|
.hero .cta { display: flex; gap: 15px; }
|
|
.hero button { padding: 15px 35px; font-size: 16px; border-radius: 8px; cursor: pointer; border: none; transition: transform 0.2s; }
|
|
.hero button:hover { transform: translateY(-2px); }
|
|
.hero .btn-primary { background: #e94560; color: white; }
|
|
.hero .btn-secondary { background: transparent; border: 2px solid #00d9ff; color: #00d9ff; }
|
|
|
|
/* Sections */
|
|
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
|
|
.section-title { font-size: 36px; margin-bottom: 50px; text-align: center; color: #fff; }
|
|
.section-title span { color: #00d9ff; }
|
|
|
|
/* Services */
|
|
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
|
|
.service-card {
|
|
background: #16213e;
|
|
padding: 40px 30px;
|
|
border-radius: 16px;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
border: 1px solid transparent;
|
|
}
|
|
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: #00d9ff; }
|
|
.service-card .icon { font-size: 48px; margin-bottom: 20px; }
|
|
.service-card h3 { color: #00d9ff; margin-bottom: 15px; font-size: 22px; }
|
|
.service-card p { color: #999; line-height: 1.6; }
|
|
|
|
/* About */
|
|
.about { background: #16213e; padding: 80px 20px; }
|
|
.about-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
|
|
.about-text h2 { font-size: 36px; margin-bottom: 20px; }
|
|
.about-text h2 span { color: #e94560; }
|
|
.about-text p { color: #999; line-height: 1.8; margin-bottom: 20px; }
|
|
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
|
|
.about-stats .stat { text-align: center; }
|
|
.about-stats .number { font-size: 36px; font-weight: bold; color: #00d9ff; }
|
|
.about-stats .label { color: #888; font-size: 14px; }
|
|
.about-image {
|
|
background: linear-gradient(135deg, #0f3460, #16213e);
|
|
height: 400px;
|
|
border-radius: 16px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 120px;
|
|
}
|
|
|
|
/* Contact */
|
|
.contact { background: #16213e; padding: 80px 20px; text-align: center; }
|
|
.contact h2 { font-size: 36px; margin-bottom: 15px; }
|
|
.contact .subtitle { color: #888; margin-bottom: 40px; }
|
|
.contact-form { max-width: 600px; margin: 0 auto; display: grid; gap: 20px; }
|
|
.contact-form input, .contact-form textarea, .contact-form select {
|
|
padding: 18px;
|
|
border-radius: 12px;
|
|
border: 2px solid #0f3460;
|
|
background: #1a1a2e;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
transition: border-color 0.3s;
|
|
}
|
|
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #00d9ff; }
|
|
.contact-form button {
|
|
background: linear-gradient(90deg, #e94560, #ff6b6b);
|
|
color: white;
|
|
border: none;
|
|
padding: 18px;
|
|
font-size: 18px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
transition: transform 0.2s;
|
|
}
|
|
.contact-form button:hover { transform: scale(1.02); }
|
|
|
|
/* Footer */
|
|
footer { background: #0f3460; padding: 40px 20px; text-align: center; }
|
|
footer .links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
|
|
footer a { color: #888; text-decoration: none; }
|
|
footer a:hover { color: #00d9ff; }
|
|
footer .copy { color: #666; font-size: 14px; }
|
|
|
|
/* Template Colors */
|
|
.restaurant header { background: #1e3a1e; }
|
|
.restaurant .hero { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a27 100%); }
|
|
|
|
.boulangerie header { background: #3d2314; }
|
|
.boulangerie .hero { background: linear-gradient(135deg, #3d2314 0%, #8b4513 100%); }
|
|
|
|
.artisan header { background: #2d2d2d; }
|
|
.artisan .hero { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%); }
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.hero h2 { font-size: 36px; }
|
|
.about-content { grid-template-columns: 1fr; }
|
|
.about-image { height: 250px; }
|
|
.cta { flex-direction: column; }
|
|
}
|
|
|
|
.home-btn{position:fixed;top:10px;left:10px;z-index:9999;background:linear-gradient(135deg,#00d9ff,#7b2cbf);color:#fff;border:none;border-radius:8px;padding:10px 15px;font-size:14px;cursor:pointer;text-decoration:none;display:flex;align-items:center;gap:8px;box-shadow:0 2px 10px rgba(0,217,255,0.3);transition:all 0.3s;font-family:-apple-system,BlinkMacSystemFont,sans-serif}.home-btn:hover{transform:translateY(-2px);box-shadow:0 4px 15px rgba(0,217,255,0.5)}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="https://portal-kolifee.duckdns.org/" class="home-btn" title="Retour au portail"><span style="font-size:18px">🏠</span><span>Accueil</span></a>
|
|
<header>
|
|
<div class="container">
|
|
<h1 id="company-name">Mon Entreprise</h1>
|
|
<nav>
|
|
<a href="#services">Services</a>
|
|
<a href="#about">À propos</a>
|
|
<a href="#contact">Contact</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<h2 id="hero-title">Votre entreprise mérite un site pro</h2>
|
|
<p class="subtitle" id="hero-subtitle">Une présence web de qualité à petit prix pour attirer plus de clients</p>
|
|
<div class="cta">
|
|
<button class="btn-primary" onclick="document.getElementById('contact').scrollIntoView({behavior: 'smooth'})">Me contacter</button>
|
|
<button class="btn-secondary" onclick="alert('Portfolio à venir!')">Voir réalisations</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section" id="services">
|
|
<h2 class="section-title">Mes <span>Services</span></h2>
|
|
<div class="services">
|
|
<div class="service-card">
|
|
<div class="icon">🎨</div>
|
|
<h3>Création de site web</h3>
|
|
<p>Site web sur-mesure, responsive et optimisé pour tous les écrans. Design moderne qui reflète votre expertise.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="icon">🔍</div>
|
|
<h3>Référencement SEO</h3>
|
|
<p>Optimisation pour Google.Soyez visible quand vos clients cherchent vos services.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="icon">📱</div>
|
|
<h3>Site mobile</h3>
|
|
<p>Version smartphone optimisée pour une expérience utilisateur parfaite.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="icon">🛠️</div>
|
|
<h3>Maintenance</h3>
|
|
<p>Je m'occupe de tout : mises à jour, hébergement, sauvegardes.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="icon">📧</div>
|
|
<h3>Email pro</h3>
|
|
<p>Adresse email personnalisée @votreentreprise.fr.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="icon">📊</div>
|
|
<h3>Analytics</h3>
|
|
<p>Suivez les visites et optimisez votre stratégie.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="about" id="about">
|
|
<div class="about-content">
|
|
<div class="about-text">
|
|
<h2>À <span>propos</span></h2>
|
|
<p id="about-desc">Fort de mon expérience dans le numérique, j'aide les artisans et petits commerçants à se doter d'une présence web professionnelle sans se ruiner.</p>
|
|
<p>Mon objectif : rendre le web accessible à tous les professionnels, quel que soit leur budget.</p>
|
|
<div class="about-stats">
|
|
<div class="stat">
|
|
<div class="number">50+</div>
|
|
<div class="label">Sites créés</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="number">100%</div>
|
|
<div class="label">Clients satisfaits</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="number">24h</div>
|
|
<div class="label">Délai moyen</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="about-image">🏢</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="contact" id="contact">
|
|
<h2>Me <span>contacter</span></h2>
|
|
<p class="subtitle">Parlons de votre projet !</p>
|
|
<form class="contact-form" onsubmit="event.preventDefault(); alert('Message envoyé!');">
|
|
<input type="text" placeholder="Votre nom *" required>
|
|
<input type="email" placeholder="Votre email *" required>
|
|
<input type="tel" placeholder="Votre téléphone">
|
|
<select>
|
|
<option value="">Sujet de votre message</option>
|
|
<option value="devis">Demande de devis</option>
|
|
<option value="info">Informations</option>
|
|
<option value="autre">Autre</option>
|
|
</select>
|
|
<textarea placeholder="Votre message..." rows="5" required></textarea>
|
|
<button type="submit">Envoyer le message</button>
|
|
</form>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="links">
|
|
<a href="#services">Services</a>
|
|
<a href="#about">À propos</a>
|
|
<a href="#contact">Contact</a>
|
|
<a href="#">Mentions légales</a>
|
|
</div>
|
|
<p class="copy">© 2026 <span id="footer-name">Mon Entreprise</span>. Tous droits réservés.</p>
|
|
</footer>
|
|
|
|
<script>
|
|
// Configuration du template
|
|
const config = {
|
|
name: 'Mon Entreprise',
|
|
email: 'contact@monentreprise.fr',
|
|
phone: '01 23 45 67 89',
|
|
city: 'Paris',
|
|
template: 'default' // default, restaurant, boulangerie, artisan
|
|
};
|
|
|
|
// Appliquer la configuration
|
|
document.getElementById('company-name').textContent = config.name;
|
|
document.getElementById('hero-title').textContent = config.name + ' - Votre succès en ligne';
|
|
document.getElementById('footer-name').textContent = config.name;
|
|
|
|
// Changer le template
|
|
if (config.template === 'restaurant') {
|
|
document.body.classList.add('restaurant');
|
|
} else if (config.template === 'boulangerie') {
|
|
document.body.classList.add('boulangerie');
|
|
} else if (config.template === 'artisan') {
|
|
document.body.classList.add('artisan');
|
|
}
|
|
|
|
// Smooth scroll
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
anchor.addEventListener('click', function (e) {
|
|
e.preventDefault();
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
|
behavior: 'smooth'
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|