jklink/src/index.html
Jan Klattenhoff f69b3bb759
All checks were successful
release-please / release-please (push) Successful in 2m1s
feat: add chat support to index.html
2025-03-15 19:01:38 +01:00

30 lines
819 B
HTML

<!DOCTYPE html>
<html class="h-full" lang="en" data-theme="light">
<head>
<meta charset="utf-8" />
<title>Jklink</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body class="h-full base-100 mat-typography">
<app-root></app-root>
<script src="https://support.kjan.de/assets/chat/chat-no-jquery.min.js"></script>
<script>
(function() {
new ZammadChat({
fontSize: '12px',
chatId: 1
});
})();
</script>
</body>
</html>