mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 12:45:18 +02:00
⚡️ perf(seo): og image url fix
This commit is contained in:
12
index.html
12
index.html
@@ -12,21 +12,21 @@
|
||||
<!-- Open Graph Tags for Social Media -->
|
||||
<meta property="og:title" content="Snigdha OS - Advanced Penetration Testing Distribution" />
|
||||
<meta property="og:description" content="Snigdha OS is an advanced penetration testing distribution designed for professionals to perform security testing and vulnerability assessments." />
|
||||
<meta property="og:image" content="/snigdhaos-og.png" />
|
||||
<meta property="og:url" content="https://www.snigdhaos.org" />
|
||||
<meta property="og:image" content="https://snigdha-os.github.io/snigdhaos-og.png" />
|
||||
<meta property="og:url" content="https://snigdha-os.github.io/" />
|
||||
<meta property="og:type" content="website" />
|
||||
|
||||
<!-- Twitter Card Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="Snigdha OS - Advanced Penetration Testing Distribution" />
|
||||
<meta name="twitter:description" content="Snigdha OS is an advanced penetration testing distribution designed for professionals to perform security testing and vulnerability assessments." />
|
||||
<meta name="twitter:image" content="/snigdhaos-og.png" />
|
||||
<meta name="twitter:image" content="https://snigdha-os.github.io/snigdhaos-og.png" />
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
||||
|
||||
<!-- Canonical Link to prevent duplicate content issues -->
|
||||
<link rel="canonical" href="https://www.snigdhaos.org" />
|
||||
<link rel="canonical" href="https://snigdha-os.github.io/" />
|
||||
|
||||
<!-- Structured Data: JSON-LD for better understanding of page content -->
|
||||
<script type="application/ld+json">
|
||||
@@ -34,12 +34,12 @@
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebSite",
|
||||
"name": "Snigdha OS",
|
||||
"url": "https://www.snigdhaos.org",
|
||||
"url": "https://snigdha-os.github.io/",
|
||||
"description": "Snigdha OS is an advanced penetration testing distribution designed for professionals to perform security testing and vulnerability assessments.",
|
||||
"publisher": {
|
||||
"@type": "Organization",
|
||||
"name": "Snigdha OS Team",
|
||||
"logo": "https://www.snigdhaos.org/snigdhaos-logo.png"
|
||||
"logo": "https://snigdha-os.github.io/snigdhaos-logo.png"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@@ -8,8 +8,8 @@ export interface DownloadVersion {
|
||||
|
||||
export const downloads: DownloadVersion[] = [
|
||||
{
|
||||
version: '2024.1',
|
||||
size: '4.2 GB',
|
||||
version: 'Arctic V',
|
||||
size: '1.4 GB',
|
||||
url: 'https://snigdhaos.org/downloads/snigdhaos-2024.1-installer-amd64.iso',
|
||||
sha256: 'e4654e5633f4e1f8f57a9fb3dca02f9db06e9acb5e346f0fae9d9f5c3a9c0e9',
|
||||
gpg: '-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v2\n...',
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
import { getUserLocation, type UserLocation } from '@/lib/location';
|
||||
import { getUserLocation, type UserLocation } from '../lib/location';
|
||||
|
||||
export function useLocation() {
|
||||
const [location, setLocation] = useState<UserLocation | null>(null);
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
import { measureNetworkSpeed } from '@/lib/network';
|
||||
import { measureNetworkSpeed } from '../lib/network';
|
||||
|
||||
export function useNetworkSpeed() {
|
||||
const [speed, setSpeed] = useState<number | null>(null);
|
||||
|
Reference in New Issue
Block a user