mirror of
https://github.com/Snigdha-OS/snigdhaos-web-dev.git
synced 2025-09-05 12:56:37 +02:00
105 lines
5.6 KiB
HTML
105 lines
5.6 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 of the Website: This appears in the browser tab and search results -->
|
|
<title>SNIGDHA OS - Arch-based Linux Distribution for Penetration Testing and Ethical Hacking</title>
|
|
|
|
<!-- Meta Description: A brief summary of your website's content for search engines and social media. -->
|
|
<meta
|
|
name="description"
|
|
content="SNIGDHA OS is a fast, secure, and elegant GNU/Linux desktop distribution designed for modern users. Perfect for developers, creators, and enthusiasts, especially for penetration testing and ethical hacking."
|
|
/>
|
|
|
|
<!-- Open Graph / Facebook Tags: These tags improve how your website looks when shared on social platforms like Facebook. -->
|
|
<meta property="og:type" content="website" /> <!-- Specifies that the content is a website -->
|
|
<meta property="og:title" content="SNIGDHA OS - Arch-based Linux Distribution for Penetration Testing and Ethical Hacking" /> <!-- The title shown when shared -->
|
|
<meta
|
|
property="og:description"
|
|
content="SNIGDHA OS is a fast, secure, and elegant GNU/Linux desktop distribution designed for modern users. Perfect for developers, creators, and enthusiasts, especially for penetration testing and ethical hacking."
|
|
/> <!-- A description of the website shared on social media -->
|
|
<meta property="og:url" content="https://snigdhaos.org/" /> <!-- URL of the website -->
|
|
<meta property="og:image" content="https://snigdhaos.org/og-image.png" /> <!-- Image preview shown when shared on social platforms -->
|
|
<meta property="og:site_name" content="SNIGDHA OS" /> <!-- The name of your site -->
|
|
|
|
<!-- Twitter Card Tags: These tags are similar to Open Graph but specifically for Twitter. -->
|
|
<meta name="twitter:card" content="summary_large_image" /> <!-- Card type for Twitter (display large image) -->
|
|
<meta name="twitter:title" content="SNIGDHA OS - Arch-based Linux Distribution for Penetration Testing and Ethical Hacking" /> <!-- Title for Twitter -->
|
|
<meta
|
|
name="twitter:description"
|
|
content="SNIGDHA OS is a fast, secure, and elegant GNU/Linux desktop distribution designed for modern users. Perfect for developers, creators, and enthusiasts, especially for penetration testing and ethical hacking."
|
|
/> <!-- Description for Twitter sharing -->
|
|
<meta name="twitter:image" content="https://snigdhaos.org/twitter-image.png" /> <!-- Image shown in the Twitter preview -->
|
|
<meta name="twitter:creator" content="@snigdhaos" /> <!-- Twitter handle of the content creator -->
|
|
|
|
<!-- Author Meta Tag: Specifies the author of the website -->
|
|
<meta name="author" content="Snigdha OS Team" />
|
|
|
|
<!-- Theme Color: Defines the color of the browser's address bar or toolbar for mobile devices -->
|
|
<meta name="theme-color" content="#4f46e5" />
|
|
|
|
<!-- Keywords for SEO: These keywords help search engines understand your site's content -->
|
|
<meta
|
|
name="keywords"
|
|
content="Linux, Linux Distribution, Snigdha OS, Arch Linux, Penetration Testing, Ethical Hacking, Security, Open Source, Operating System, Desktop Environment, Linux for Developers, Cybersecurity"
|
|
/>
|
|
|
|
<!-- Robots Meta Tag: This tells search engines what to do with the page (index or noindex, follow or nofollow links) -->
|
|
<meta name="robots" content="index, follow" />
|
|
|
|
<!-- Canonical URL: Specifies the preferred version of the page to prevent duplicate content issues -->
|
|
<link rel="canonical" href="https://snigdhaos.org/" />
|
|
|
|
<!-- Favicon: A small icon displayed in the browser tab -->
|
|
<link rel="icon" href="https://snigdhaos.org/favicon.ico" type="image/x-icon" />
|
|
|
|
<!-- Apple Touch Icon: Custom icon for iOS devices when users add your site to their home screen -->
|
|
<link rel="apple-touch-icon" href="https://snigdhaos.org/apple-touch-icon.png">
|
|
|
|
<!-- Apple Startup Image: Custom startup image for iOS when the site is launched from home screen -->
|
|
<link rel="apple-touch-startup-image" href="https://snigdhaos.org/apple-startup-image.png">
|
|
|
|
<!-- Structured Data (JSON-LD): This defines the organization schema in a machine-readable format, helping search engines understand your website better. -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "Organization",
|
|
"name": "Snigdha OS",
|
|
"url": "https://snigdhaos.org/",
|
|
"logo": "https://snigdhaos.org/logo.png",
|
|
"contactPoint": {
|
|
"@type": "ContactPoint",
|
|
"contactType": "Customer Support",
|
|
"areaServed": "Worldwide",
|
|
"availableLanguage": "English"
|
|
},
|
|
"sameAs": [
|
|
"https://www.facebook.com/Snigdha-OS",
|
|
"https://twitter.com/SnigdhaOS",
|
|
"https://github.com/Snigdha-OS"
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<!-- Google Analytics Script: This allows you to track and analyze traffic to your website -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=GTM-5HXGM54C"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'GTM-5HXGM54C');
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<!-- Main content of the website will be rendered here by React -->
|
|
<div id="root"></div>
|
|
|
|
<!-- Entry point for the React app (main.tsx) -->
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|