116 lines
4.4 KiB
HTML
116 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DÉMO : Site Vitrine TPE - BARUA Aditta</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
|
|
|
<style>
|
|
.demo-section {
|
|
min-height: 80vh;
|
|
padding: 80px 10%;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
border-radius: 0;
|
|
margin-bottom: 0;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.hero-tpe {
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
}
|
|
.hero-tpe h1 {
|
|
font-size: 3.5rem;
|
|
color: #00ffcc;
|
|
text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
|
|
}
|
|
.hero-tpe p {
|
|
font-size: 1.5rem;
|
|
max-width: 800px;
|
|
margin: 20px auto 40px;
|
|
opacity: 0.9;
|
|
}
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
.service-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
border-left: 5px solid #00aaff;
|
|
transition: transform 0.3s ease, border-left-color 0.3s;
|
|
}
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
border-left-color: #00ffcc;
|
|
}
|
|
.service-card i {
|
|
font-size: 2.5rem;
|
|
color: #00ffcc;
|
|
margin-bottom: 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<canvas id="background-canvas"></canvas>
|
|
|
|
<header id="page-header"></header>
|
|
|
|
<main>
|
|
|
|
<section id="demo-tpe" class="demo-section" data-aos="fade-up">
|
|
|
|
<div class="hero-tpe">
|
|
<h1>Agence CONCEPTS: Design & Innovation</h1>
|
|
<p>Créer des ponts entre la vision de nos clients et une réalité numérique impactante.</p>
|
|
<a href="#" class="btn" style="background: #00ffcc; color: black;">Démarrer un projet</a>
|
|
<a href="#" class="btn" style="background: none; border: 2px solid white; color: white; margin-left: 20px;">Nos réalisations</a>
|
|
</div>
|
|
|
|
<div class="services-grid">
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="100">
|
|
<i class="fa fa-lightbulb"></i>
|
|
<h3>Stratégie Digitale</h3>
|
|
<p>Définition d'une feuille de route claire pour maximiser la présence en ligne et l'acquisition de leads.</p>
|
|
</div>
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="200">
|
|
<i class="fa fa-code"></i>
|
|
<h3>Développement Web</h3>
|
|
<p>Création de sites rapides, sécurisés et optimisés SEO, du concept à la livraison finale.</p>
|
|
</div>
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="300">
|
|
<i class="fa fa-palette"></i>
|
|
<h3>UX/UI Design</h3>
|
|
<p>Conception d'interfaces utilisateur intuitives et esthétiques, centrées sur l'expérience client.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<p style="text-align: center; margin-top: 80px; opacity: 0.6;">
|
|
Ceci est une simulation de page vitrine conçue par Aditta Barua pour illustrer un projet TPE.
|
|
<br><a href="projects.html" style="color: #00c8ff;">Retour aux Projets</a>
|
|
</p>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer id="page-footer"></footer>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
|
|
<script>AOS.init();</script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |