blob: 0c6ecd77911bfec9eb78e711717bea305b5a816a (
plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
---
import "../styles/global.css";
import Navigation from "../components/Navigation";
import { GOOGLE_ANALYTICS_ID } from "../config";
export interface Props {
title: string;
description?: string;
ogImage?: string;
ogImageAlt?: string;
noindex?: boolean;
}
const {
title,
description,
ogImage = "https://cidr.xyz/og.webp",
ogImageAlt = "Color-coded octets illustrating an IP range and CIDR mask",
noindex = false,
} = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/ico/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/ico/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/ico/icon-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/ico/icon-512.png"
/>
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#0066cc" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
{description && <meta name="description" content={description} />}
<meta
name="robots"
content={noindex ? "noindex, follow" : "index, follow"}
/>
<link rel="canonical" href={`https://cidr.xyz${Astro.url.pathname}`} />
{
!noindex && (
<>
<meta property="og:title" content={title} />
{description && (
<meta property="og:description" content={description} />
)}
<meta property="og:type" content="website" />
<meta
property="og:url"
content={`https://cidr.xyz${Astro.url.pathname}`}
/>
<meta property="og:site_name" content="CIDR.xyz" />
<meta property="og:image" content={ogImage} />
<meta property="og:image:type" content="image/webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content={ogImageAlt} />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content={title} />
{description && (
<meta
name="twitter:description"
content={description}
/>
)}
<meta name="twitter:image" content={ogImage} />
</>
)
}
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${GOOGLE_ANALYTICS_ID}`}
></script>
<script define:vars={{ GOOGLE_ANALYTICS_ID }} is:inline>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", GOOGLE_ANALYTICS_ID);
</script>
<slot name="head" />
</head>
<body class="flex flex-col min-h-screen">
<div
class="flex-grow flex flex-col items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-100 p-2 w-full"
>
<Navigation client:idle />
<div class="max-w-6xl w-full sm:p-8 p-2 min-h-[800px]">
<slot />
</div>
</div>
<footer class="w-full py-12 pb-20 bg-gray-800 text-gray-200">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="md:col-span-1">
<h3 class="text-lg font-semibold mb-4">CIDR.xyz</h3>
<p class="text-sm">
A modern CIDR calculator and subnet visualization
tool.
</p>
<p class="pt-4 text-xs">
© {new Date().getFullYear()} Magic Monad. All rights
reserved.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2 text-sm">
<li>
<a
href="/subnet-guide/"
class="text-gray-400 hover:text-white"
>Subnet Guide</a
>
</li>
<li>
<a
href="/embed-widget/"
class="text-gray-400 hover:text-white"
>Embed Widget</a
>
</li>
<li>
<a
href="/privacy-policy/"
class="text-gray-400 hover:text-white"
>Privacy Policy</a
>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Links</h3>
<ul class="space-y-2 text-sm">
<li>
<a
href="https://namekit.app/"
class="text-gray-400 hover:text-white"
>AI Domain Name Search</a
>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">About</h3>
<ul class="space-y-2 text-sm">
<li>
Source code on <a
href="https://github.com/yuvadm/cidr.xyz"
class="text-gray-400 hover:text-white"
>Github</a
>
</li>
<li>
Created by <a
href="https://yuv.al/"
class="text-gray-400 hover:text-white"
>Yuval Adam</a
>
</li>
<li>
Operated by <a
href="https://magicmonad.com/"
class="text-gray-400 hover:text-white"
>Magic Monad</a
>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>
|