MastermindReact/index.html
2025-03-03 18:07:27 +01:00

38 lines
1.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mastermind</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<footer>
<div class="middle">
<h2>Let's keep in touch !</h2>
<p>If these projects or my profile interests you feel free to contact me through any of the social links on the right.</p>
</div>
<div class="right">
<div class="mail-to">
<p><b>Mail: </b><a class="link" href="mailto:pro@quentin-leblanc.ch">pro@quentin-leblanc.ch</a></p>
</div>
<div></div>
<div></div>
<div class="socials">
<a href="https://www.linkedin.com/in/quentin-leblanc-7b6043176/" target="_blank"><img class="social" src="src/assets/icons/linkedin.svg" alt="Quentin's LinkedIN"/></a>
</div>
<div class="socials">
<a href="https://git.quentin-leblanc.ch/quentin" target="_blank"><img class="social" src="src/assets/icons/git-alt.svg" alt="Quentin's Git"/></a>
</div>
<div class="socials">
<a href="https://www.instagram.com/th3wh1t3q/" target="_blank"><img class="social" src="src/assets/icons/square-instagram.svg" alt="Quentin's Instagram"/></a>
</div>
<div></div>
</div>
</footer>
</body>
</html>