Update and rename MD to Godola Web site

This commit is contained in:
KING-kong237 2025-08-31 17:03:04 +01:00 committed by GitHub
parent 13f5cf16b3
commit 4d2c58ab54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 668 additions and 2 deletions

668
Godola Web site Normal file
View File

@ -0,0 +1,668 @@
```html
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stratégie Marketing Digital - GODOLA DIGITAL SERVICES</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bleu-nuit: #000033;
--orange-vif: #FF6B00;
--vert: #009A49;
--rouge: #CE1126;
--jaune: #FCD116;
--blanc: #ffffff;
--gris-clair: #f4f4f4;
--deg-cameroun: linear-gradient(45deg, var(--vert), var(--jaune), var(--rouge));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--bleu-nuit);
color: var(--blanc);
line-height: 1.6;
overflow-x: hidden;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 0;
}
/* Header */
header {
background: rgba(0, 0, 51, 0.95);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
z-index: 1000;
padding: 1rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo h1 {
font-size: 1.8rem;
font-weight: 700;
background: var(--deg-cameroun);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-right: 10px;
}
.logo span {
font-size: 0.9rem;
color: var(--blanc);
font-weight: 300;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding-top: 80px;
position: relative;
overflow: hidden;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 0, 51, 0.9), rgba(0, 0, 51, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><rect fill="%23FF6B00" width="50" height="50" /><rect fill="%23FCD116" x="50" width="50" height="50" /><rect fill="%23009A49" y="50" width="50" height="50" /><rect fill="%23CE1126" x="50" y="50" width="50" height="50" /></svg>');
background-size: cover;
z-index: -1;
}
.hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
background: linear-gradient(45deg, var(--orange-vif), var(--jaune));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.9;
}
/* Section Styles */
.section {
padding: 6rem 0;
position: relative;
}
.section-title {
text-align: center;
margin-bottom: 4rem;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 700;
background: var(--deg-cameroun);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.section-title p {
max-width: 600px;
margin: 0 auto;
opacity: 0.8;
}
/* Cards Grid */
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2.5rem 2rem;
text-align: center;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
}
.card:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 0;
background: var(--deg-cameroun);
transition: height 0.5s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.card:hover:before {
height: 100%;
}
.card-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
background: var(--deg-cameroun);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--blanc);
}
.card p {
margin-bottom: 1.5rem;
opacity: 0.8;
}
/* Steps */
.steps {
display: flex;
flex-direction: column;
gap: 2rem;
max-width: 800px;
margin: 0 auto;
}
.step {
display: flex;
align-items: flex-start;
gap: 1.5rem;
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 15px;
border-left: 4px solid var(--orange-vif);
}
.step-number {
background: var(--orange-vif);
color: var(--bleu-nuit);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}
.step-content h3 {
margin-bottom: 0.5rem;
color: var(--blanc);
}
/* Contact Section */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 3rem;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
}
}
.contact-info {
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-card {
background: linear-gradient(145deg, rgba(0, 0, 51, 0.8), rgba(0, 154, 73, 0.2));
border-radius: 15px;
padding: 2rem;
margin-bottom: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid var(--orange-vif);
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}
.contact-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--blanc);
display: flex;
align-items: center;
}
.contact-card h3 i {
margin-right: 10px;
color: var(--orange-vif);
}
.contact-detail {
display: flex;
align-items: center;
margin: 1rem 0;
padding: 0.8rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
transition: all 0.3s ease;
}
.contact-detail:hover {
background: rgba(255, 107, 0, 0.1);
transform: translateX(5px);
}
.contact-detail i {
font-size: 1.2rem;
margin-right: 15px;
width: 25px;
color: var(--jaune);
}
.contact-detail a {
color: var(--blanc);
text-decoration: none;
transition: color 0.3s ease;
}
.contact-detail a:hover {
color: var(--orange-vif);
}
.location {
display: flex;
align-items: center;
margin-top: 1.5rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
border-left: 3px solid var(--vert);
}
.location i {
font-size: 1.5rem;
margin-right: 15px;
color: var(--rouge);
}
/* Buttons */
.btn-primary {
background: var(--orange-vif);
color: var(--bleu-nuit);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-block;
border: none;
cursor: pointer;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}
/* Footer */
footer {
background: rgba(0, 0, 33, 0.95);
padding: 4rem 0 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-logo h2 {
font-size: 2rem;
margin-bottom: 1rem;
background: var(--deg-cameroun);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.footer-logo p {
opacity: 0.8;
margin-bottom: 1.5rem;
}
.copyright {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<!-- Header & Navigation -->
<header>
<div class="container header-container">
<div class="logo">
<h1>GODOLA</h1>
<span>DIGITAL SERVICES</span>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-bg"></div>
<div class="container hero-content">
<h1>Stratégie Marketing Digital avec Manus.im</h1>
<p>Découvrez comment créer des designs professionnels captivants pour GODOLA DIGITAL SERVICES en utilisant les 1000 crédits gratuits offerts par Manus.im</p>
</div>
</section>
<!-- Introduction Section -->
<section class="section">
<div class="container">
<div class="section-title">
<h2>Optimisez Votre Marketing Digital</h2>
<p>Manus.im est une plateforme de design IA qui vous permet de créer des visuels professionnels en quelques minutes</p>
</div>
<div class="cards-grid">
<div class="card">
<div class="card-icon">
<i class="fas fa-paint-brush"></i>
</div>
<h3>Designs Professionnels</h3>
<p>Créez des designs de haute qualité sans compétences techniques</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-bolt"></i>
</div>
<h3>Génération Rapide</h3>
<p>Générez des designs en quelques secondes grâce à l'IA</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-coins"></i>
</div>
<h3>1000 Crédits Gratuits</h3>
<p>Profitez de l'offre de bienvenue pour créer vos premiers designs</p>
</div>
</div>
</div>
</section>
<!-- How To Section -->
<section class="section">
<div class="container">
<div class="section-title">
<h2>Comment Utiliser Manus.im</h2>
<p>Suivez ces étapes simples pour créer des designs captivants pour GODOLA</p>
</div>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Créez votre compte</h3>
<p>Rendez-vous sur <a href="https://manus.im" style="color: var(--orange-vif);">manus.im</a> et créez un compte gratuit. Vous recevrez automatiquement 1000 crédits pour commencer.</p>
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Choisissez un template</h3>
<p>Sélectionnez un template adapté à vos besoins : posts réseaux sociaux, bannières, logos, ou designs sur mesure.</p>
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-content">
<h3>Personnalisez avec vos informations</h3>
<p>Utilisez les informations de GODOLA DIGITAL SERVICES :</p>
<ul style="margin-left: 1.5rem; margin-top: 0.5rem;">
<li>Nom : GODOLA DIGITAL SERVICES</li>
<li>Slogan : "Vos projets, notre expertise"</li>
<li>Téléphone : (+237) 6 91 67 10 10</li>
<li>Email : godoladigitalservices@gmail.com</li>
<li>Localisation : Douala/Bali, Cameroun</li>
</ul>
</div>
</div>
<div class="step">
<div class="step-number">4</div>
<div class="step-content">
<h3>Ajoutez les couleurs de la marque</h3>
<p>Utilisez la palette de couleurs "Élégance Camerounaise" :</p>
<div style="display: flex; gap: 10px; margin-top: 0.5rem;">
<div style="width: 30px; height: 30px; background: #000033; border-radius: 50%;"></div>
<div style="width: 30px; height: 30px; background: #FF6B00; border-radius: 50%;"></div>
<div style="width: 30px; height: 30px; background: #009A49; border-radius: 50%;"></div>
<div style="width: 30px; height: 30px; background: #CE1126; border-radius: 50%;"></div>
<div style="width: 30px; height: 30px; background: #FCD116; border-radius: 50%;"></div>
</div>
</div>
</div>
<div class="step">
<div class="step-number">5</div>
<div class="step-content">
<h3>Générez et téléchargez</h3>
<p>Générez votre design et téléchargez-le en haute résolution pour l'utiliser sur tous vos supports de communication.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Design Ideas Section -->
<section class="section">
<div class="container">
<div class="section-title">
<h2>Idées de Designs à Créer</h2>
<p>Utilisez vos crédits gratuits pour créer ces designs essentiels</p>
</div>
<div class="cards-grid">
<div class="card">
<div class="card-icon">
<i class="fab fa-facebook"></i>
</div>
<h3>Posts Réseaux Sociaux</h3>
<p>Créez des posts engageants pour Facebook, Instagram et LinkedIn</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-envelope"></i>
</div>
<h3>Newsletters</h3>
<p>Concevez des newsletters attrayantes pour votre email marketing</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-bullhorn"></i>
</div>
<h3>Bannières Publicitaires</h3>
<p>Générez des bannières pour vos campagnes publicitaires en ligne</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-file-alt"></i>
</div>
<h3>Présentations</h3>
<p>Créez des présentations professionnelles pour vos clients</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-logo"></i>
</div>
<h3>Logos et Identité Visuelle</h3>
<p>Développez une identité cohérente pour votre marque</p>
</div>
<div class="card">
<div class="card-icon">
<i class="fas fa-business-card"></i>
</div>
<h3>Cartes de Visite</h3>
<p>Concevez des cartes de visite professionnelles</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="section" id="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>Restons en contact pour plus de conseils en marketing digital</p>
</div>
<div class="contact-grid">
<div class="contact-info">
<div class="contact-card">
<h3><i class="fas fa-comments"></i> Discutons de votre stratégie marketing</h3>
<p>Notre équipe est à votre écoute pour vous aider à créer des designs percutants qui renforceront votre image de marque.</p>
<div class="contact-detail">
<i class="fab fa-whatsapp"></i>
<a href="https://wa.me/237691671010" target="_blank">(+237) 6 91 67 10 10</a>
</div>
<div class="contact-detail">
<i class="fas fa-envelope"></i>
<a href="mailto:godoladigitalservices@gmail.com">godoladigitalservices@gmail.com</a>
</div>
<div class="location">
<i class="fas fa-map-marker-alt"></i>
<div>
<strong>Siège Social</strong><br>
Douala / Bali, Cameroun
</div>
</div>
<a href="https://wa.me/237691671010" target="_blank" class="btn-primary">
<i class="fab fa-whatsapp"></i> Discuter sur WhatsApp
</a>
</div>
</div>
<div class="contact-form">
<h3>Besoin d'aide avec Manus.im?</h3>
<p>Laissez-nous vos coordonnées et nous vous aiderons à créer vos premiers designs.</p>
<div style="margin-top: 2rem;">
<div class="form-group">
<label for="name">Votre Nom</label>
<input type="text" id="name" placeholder="Votre nom complet">
</div>
<div class="form-group">
<label for="email">Votre Email</label>
<input type="email" id="email" placeholder="votre@email.com">
</div>
<div class="form-group">
<label for="message">Votre Message</label>
<textarea id="message" rows="5" placeholder="Décrivez vos besoins..."></textarea>
</div>
<button type="submit" class="btn-primary">Envoyer le Message</button>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<h2>GODOLA</h2>
<p>Vos projets, notre expertise. Nous transformons vos idées en solutions digitales innovantes avec une touche d'élégance camerounaise.</p>
</div>
</div>
<div class="copyright">
<p>&copy; 2023 GODOLA DIGITAL SERVICES. Tous droits réservés.</p>
</div>
</div>
</footer>
</body>
</html>
```

2
MD
View File

@ -1,2 +0,0 @@
*
`hyper-realistic photographic masterpiece, professional masterpiece, a powerful and hypnotizing visual identity for "GODOLA DIGITAL SERVICES". The core concept is "Cameroonian Elegance meets Digital Innovation". The image features a sleek, modern desk in a minimalist office with an awe-inspiring view of a futuristic Douala cityscape at twilight. On the desk, a high-end laptop displays a stunning, asymmetrical website design with a deep navy blue (#000033) background. A vibrant, glowing orange (#FF6B00) "Call to Action" button draws the eye. Subtle, refined elements in green, red, and yellow inspired by the Cameroonian flag are integrated as elegant gradients on a business card and as light accents on a premium pen. The scene is illuminated by the golden hour sun, creating long, dramatic shadows and a warm, confident, and trustworthy atmosphere. The composition is dynamic, using the rule of thirds, with a shallow depth of field focusing on the key visual elements. style: photorealistic, 32k resolution, sharp focus, cinematic lighting, professional color grading ar 16:9 v 6.0`