-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (62 loc) · 2.45 KB
/
index.html
File metadata and controls
70 lines (62 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!-- index.html -->
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sourcinno - Accueil</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Header (chargé par script.js) -->
<div id="app-header"></div>
<!-- Hero -->
<section class="hero home-hero">
<h1 data-typewriter data-text="Développer sa croissance par l'innovation"></h1>
</section>
<!-- Section: Cards -->
<section class="cards-section">
<div class="card">
<div class="icon" aria-hidden="true">
<!-- AI/Business icon -->
<svg viewBox="0 0 24 24" role="img" aria-label="star">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-.01L12 2z" />
</svg>
</div>
<h1 class="vb-title">AI BUSINESS</h1>
<p class="intro primary-color">
<p class="lead"><strong>ENGAGEZ VOS ÉQUIPES DANS L'INTELLIGENCE ARTIFICIELLE</strong></p>
<br>
<ul style="list-style: none; padding-left: 1.2rem; font-size: 1.4rem; line-height: 1.6; margin: 0.5rem 0;">
<li style="margin-bottom: 0.4rem;">▪️ Formation sur <i>VOS</i> cas d'usage</li>
<li style="margin-bottom: 0.4rem;">▪️ Pilotage de la mise en oeuvre v1</li>
</ul>
<br>
<a href="ai-business.html" class="btn">Découvrir</a>
</div>
<div class="card">
<div class="icon" aria-hidden="true">
<!-- Rocket icon -->
<svg viewBox="0 0 24 24" role="img" aria-label="idea">
<path d="M12 2a7 7 0 0 1 4 12c-.6.6-1 1.4-1 2H9c0-.6-.4-1.4-1-2A7 7 0 0 1 12 2z" />
<path d="M9 18h6M10 21h4" />
</svg>
</div>
<h1 class="vb-title">VENTURE BUILDING</h1>
<p class="intro primary-color">
<p class="lead"><strong>EXPÉRIMENTEZ DE NOUVELLES APPROCHES DE CROISSANCE</strong></p>
<br>
<ul style="list-style: none; padding-left: 1.2rem; font-size: 1.4rem; line-height: 1.6; margin: 0.5rem 0;">
<li style="margin-bottom: 0.4rem;">▪️ Startup prototypées sur votre secteur</li>
<li style="margin-bottom: 0.4rem;">▪️ Pilotage de la création</li>
</ul>
<br>
<a href="venture-building.html" class="btn">Découvrir</a>
</div>
</section>
<!-- Footer (chargé par script.js) -->
<div id="app-footer"></div>
<script src="script.js"></script>
</body>
<!-- Test deployment 2025-10-02 -->
</html>