add adsense code to head

This commit is contained in:
2025-12-21 18:22:32 +09:00
parent c68503d21d
commit 74d7e3b960
2 changed files with 2222 additions and 36 deletions

View File

@@ -1,42 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JBD BMS Web Tool</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
gray: {
850: '#1f2937',
900: '#111827',
950: '#030712',
}
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JBD BMS Web Tool</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4444852135420953"
crossorigin="anonymous"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
gray: {
850: '#1f2937',
900: '#111827',
950: '#030712',
}
}
}
}
</script>
<style>
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
</style>
}
</script>
<style>
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
</style>
<script type="importmap">
{
"imports": {
@@ -48,10 +54,12 @@
}
}
</script>
<link rel="stylesheet" href="/index.css">
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-gray-950 text-gray-100 font-sans antialiased overflow-hidden h-screen w-screen">
<div id="root" class="h-full w-full"></div>
<body class="bg-gray-950 text-gray-100 font-sans antialiased overflow-hidden h-screen w-screen">
<div id="root" class="h-full w-full"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>