diff --git a/assets/background.jpg b/assets/background.jpg new file mode 100644 index 00000000..219aa3f3 Binary files /dev/null and b/assets/background.jpg differ diff --git a/assets/snigdha-os.svg b/assets/snigdha-os.svg new file mode 100644 index 00000000..5d38c57c --- /dev/null +++ b/assets/snigdha-os.svg @@ -0,0 +1,11 @@ + + Snigdha OS + + + + + \ No newline at end of file diff --git a/assets/snigdhaos-gnome.png b/assets/snigdhaos-gnome.png new file mode 100644 index 00000000..03854660 Binary files /dev/null and b/assets/snigdhaos-gnome.png differ diff --git a/assets/snigdhaos-interface.png b/assets/snigdhaos-interface.png new file mode 100644 index 00000000..a5119009 Binary files /dev/null and b/assets/snigdhaos-interface.png differ diff --git a/assets/snigdhaos-plasma.jpeg b/assets/snigdhaos-plasma.jpeg new file mode 100644 index 00000000..ff09c272 Binary files /dev/null and b/assets/snigdhaos-plasma.jpeg differ diff --git a/assets/snigdhaos-xfce.png b/assets/snigdhaos-xfce.png new file mode 100644 index 00000000..43fb9aa5 Binary files /dev/null and b/assets/snigdhaos-xfce.png differ diff --git a/assets/snigdhaos_favicon.ico b/assets/snigdhaos_favicon.ico new file mode 100644 index 00000000..be19e9ec Binary files /dev/null and b/assets/snigdhaos_favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 00000000..519f59df --- /dev/null +++ b/index.html @@ -0,0 +1,334 @@ + + + + + + SNIGDHA OS + + + + + + + + + +
+
+ + + + + Snigdha OS + + + + + + + +
+

SNIGDHA OS

+

Be Silent, When It Is Time To Hear!


+

+ A lightweight and highly customizable Linux distribution based on Arch and the Linux Zen Kernel. + Designed to be efficient in its use of system resources, making it ideal for older hardware or devices with limited resources. + Emphasizes minimalism and user-centric design, and it also focuses on penetration testing. +

+ +
+
+
+ +
+

The Industry Standard

+

Kali Linux is not about the tools, nor the operating system. Kali Linux is a platform.

+
+
+

Make Your Job Easier

+

You can take our base and start customizing built on it, but you have to see the tools up manually and configure them. Let a professional tool set do these things.

+
+
+

Kali Everywhere

+

A version of Kali is always close by, pre-loaded where you need it. Mobile devices, Container, ARM, Cloud platform, Windows Subsystem for Linux, Docker Images, and others are all available.

+
+
+

Customization

+

With the use of tool metapackages optimized for the specific tasks of a security professional, it's a highly specialized and well-documented Linux distribution that allows you to generate an optimized version of Kali for your specific needs.

+
+
+
+ +
+ Kali Linux Interface +
+ +
+

All the tools you need

+

The Kali Linux penetration testing platform contains a vast array of tools and utilities. From information gathering to final reporting, Kali Linux enables security and IT professionals to assess the security of their systems.

+
+ Metasploit + Nmap + Burpsuite + Wireshark + Maltego + Hashcat +
+ Find out all about Kali's Tools +
+ +
+

Kali Everywhere

+
+
+ Windows +

Windows WSL

+

Running Kali Linux on Windows Subsystem for Linux

+
+ +
+ WSL +

WSL GUI

+

Run your preferred Kali GUI Desktop Environment

+
+
+ +
+
+ ARM +

ARM

+

Single board computers have grown up! With the rise of ARM64 as a server platform, Kali's ARM support has grown too.

+
+
+ Bare Metal +

Bare Metal

+

The classic way to run Kali Linux - install it on your hardware and boot directly into Kali.

+
+
+ Cloud +

Cloud

+

Launch Kali Linux in your preferred cloud platform with our pre-built images.

+
+
+ Containers +

Containers

+

Run Kali Linux in a container with our official Docker images.

+
+
+ Mobile +

Mobile

+

Take Kali with you on your Android device with NetHunter.

+
+
+ USB +

USB

+

Create a portable Kali Linux installation on a USB drive.

+
+
+ Virtual Machines +

Virtual Machines

+

Run Kali Linux in a virtual machine with our pre-built images.

+
+
+ WSL +

WSL

+

Run Kali Linux directly on Windows with WSL integration.

+
+
+
+ +
+

Choose the desktop you prefer

+ +
+
+
+

Xfce

+

Xfce is a lightweight desktop environment for UNIX-like operating systems. It aims to be fast and low on system resources, while still being visually appealing and user friendly.

+

Our collection of specifically packaged tools from information gathering to final reporting are readily available with a few clicks. You can be confident in reliable and tested tools and documentation. This is Kali's default desktop environment.

+
+ Xfce Desktop +
+ +
+
+

GNOME Shell

+

Every part of GNOME Shell has been designed to make it simple and easy to use. The Activities Overview is an easy way to access all your basic tasks. A press of a button is all it takes to view your open windows, launch applications, or check if you have new messages.

+

Just start typing to search your computer or the web.

+
+ GNOME Shell Desktop +
+ +
+
+

KDE Plasma

+

Simple by default, powerful when needed. Plasma is made to stay out of the way when you want to focus on your work, but it's there and ready when you need its power.

+

Discover the ease of use, fine-tuned with the same attention to detail that makes Plasma shine. A streamlined interface that stays out of your way lets you focus on your work.

+

Author: https://x.com/LinuxScoop/status/1432903154484449283/photo/1

+
+ KDE Plasma Desktop +
+
+
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 00000000..e8623cf8 --- /dev/null +++ b/style.css @@ -0,0 +1,526 @@ +:root { + --primary-blue: #754ffe; + --dark-blue: #1a1f2c; + --gold: #f0a500; + --purple: #8957e5; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: Arial, sans-serif; +} + +body { + background-color: var(--dark-blue); + color: white; + line-height: 1.6; +} + +.navbar { + display: flex; + justify-content: space-between; + align-items: center; + padding: 1rem 5%; + position: fixed; + width: 100%; + top: 0; + background-color: rgba(26, 31, 44, 0.95); + z-index: 1000; +} + +.logo { + height: 40px; +} + +.nav-links { + display: flex; + gap: 2rem; +} + +.nav-links a { + color: white; + text-decoration: none; + font-size: 0.9rem; + text-transform: uppercase; + font-weight: 500; +} + +.hero { + min-height: 100vh; + display: flex; + align-items: center; + padding: 0 5%; + background-image: url(/assets/background.jpg); + position: relative; + overflow: hidden; + background-position: bottom; + background-repeat: no-repeat; + background-size: cover; +} + +.hero-content { + max-width: 1200px; + margin: 0 auto; + display: grid; + grid-template-columns: 1fr 1fr; + gap: 4rem; + align-items: center; +} + +.kali-dragon { + width: 100%; + max-width: 400px; +} + +.hero-text h1 { + font-size: 3rem; + margin-bottom: 1.5rem; + line-height: 1.2; +} + +.hero-text h2 { + font-size: 2rem; + margin-bottom: 1.5rem; + line-height: 1.2; +} + +.hero-text p { + font-size: 1.1rem; + margin-bottom: 2rem; + color: #a0a0a0; +} + +.cta-buttons { + display: flex; + gap: 1rem; +} + +.btn { + padding: 0.8rem 1.5rem; + border-radius: 4px; + text-decoration: none; + font-weight: bold; + text-transform: uppercase; + font-size: 0.9rem; + display: inline-flex; + align-items: center; + gap: 0.5rem; + transition: transform 0.2s; +} + +.btn:hover { + transform: translateY(-2px); +} + +.btn-primary { + background-color: var(--gold); + color: black; +} + +.btn-secondary { + background-color: var(--primary-blue); + color: white; +} + +.features { + padding: 5rem 5%; + background-color: rgba(0, 0, 0, 0.3); +} + +.section-title { + text-align: center; + color: var(--purple); + font-size: 2.5rem; + margin-bottom: 3rem; +} + +.features-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 2rem; + max-width: 1200px; + margin: 0 auto; +} + +.feature-card { + padding: 2rem; + background: rgba(255, 255, 255, 0.05); + border-radius: 8px; + transition: transform 0.3s; +} + +.feature-card:hover { + transform: translateY(-5px); +} + +.feature-card h3 { + color: var(--primary-blue); + margin-bottom: 1rem; +} + +.laptop-showcase { + padding: 5rem 5%; + text-align: center; +} + +.laptop-image { + max-width: 100%; + height: auto; + border-radius: 8px; + box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); +} + +.tools-section { + padding: 5rem 5%; + text-align: center; + background-color: rgba(0, 0, 0, 0.3); +} + +.tools-grid { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 2rem; + max-width: 1000px; + margin: 3rem auto; +} + +.tool-icon { + width: 64px; + height: 64px; + margin: 0 auto; + transition: transform 0.3s; +} + +.tool-icon:hover { + transform: scale(1.1); +} + +.kali-everywhere { + padding: 5rem 5%; + background-color: rgba(0, 0, 0, 0.3); +} + +.platform-showcase { + display: flex; + justify-content: center; + gap: 2rem; + margin-bottom: 4rem; + padding: 2rem 0; +} + +.platform-card { + flex: 1; + max-width: 300px; + text-align: center; + padding: 1rem; +} + +.platform-card.featured { + transform: scale(1.1); +} + +.platform-image { + width: 100%; + height: auto; + border-radius: 8px; + margin-bottom: 1rem; +} + +.platform-grid { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 2rem; + max-width: 1200px; + margin: 0 auto; +} + +.platform-item { + text-align: center; + padding: 1.5rem; + background: rgba(255, 255, 255, 0.05); + border-radius: 8px; + transition: transform 0.3s; +} + +.platform-item:hover { + transform: translateY(-5px); +} + +.platform-icon { + width: 64px; + height: 64px; + margin-bottom: 1rem; +} + +.desktop-environments { + padding: 5rem 5%; +} + +.desktop-grid { + display: grid; + gap: 3rem; + max-width: 1200px; + margin: 0 auto; +} + +.desktop-card { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 2rem; + padding: 2rem; + background: rgba(255, 255, 255, 0.05); + border-radius: 8px; + align-items: center; +} + +.desktop-image { + width: 100%; + height: auto; + border-radius: 8px; + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); +} + +@media (max-width: 768px) { + .hero-content { + grid-template-columns: 1fr; + text-align: center; + } + + .nav-links { + display: none; + } + + .hero-text h1 { + font-size: 2rem; + } + + .cta-buttons { + justify-content: center; + } + + .kali-dragon { + margin: 0 auto; + } + + .features-grid { + grid-template-columns: 1fr; + } + + .tools-grid { + grid-template-columns: repeat(3, 1fr); + gap: 1rem; + } + + .platform-showcase { + flex-direction: column; + align-items: center; + } + + .platform-card.featured { + transform: none; + } + + .platform-grid { + grid-template-columns: repeat(2, 1fr); + } + + .desktop-card { + grid-template-columns: 1fr; + } + + .desktop-content { + order: -1; + } +} + +@media (max-width: 480px) { + .platform-grid { + grid-template-columns: 1fr; + } +} +.footer { +background-color: #000; +color: white; +padding: 4rem 5% 2rem; +margin-top: 4rem; +} + +.footer-container { +max-width: 1200px; +margin: 0 auto; +} + +.theme-toggle { +display: flex; +align-items: center; +justify-content: center; +gap: 1rem; +margin-bottom: 3rem; +} + +.switch { +position: relative; +display: inline-block; +width: 60px; +height: 30px; +} + +.switch input { +opacity: 0; +width: 0; +height: 0; +} + +.slider { +position: absolute; +cursor: pointer; +top: 0; +left: 0; +right: 0; +bottom: 0; +background-color: #ccc; +transition: .4s; +} + +.slider:before { +position: absolute; +content: ""; +height: 22px; +width: 22px; +left: 4px; +bottom: 4px; +background-color: white; +transition: .4s; +} + +input:checked + .slider { +background-color: var(--primary-blue); +} + +input:checked + .slider:before { +transform: translateX(30px); +} + +.slider.round { +border-radius: 34px; +} + +.slider.round:before { +border-radius: 50%; +} + +.footer-content { +display: grid; +grid-template-columns: repeat(6, 1fr); +gap: 2rem; +margin-bottom: 3rem; +} + +.footer-section { +grid-column: span 1; +} + +.footer-section h3 { +color: white; +font-size: 1rem; +margin-bottom: 1rem; +font-weight: bold; +} + +.footer-section ul { +list-style: none; +padding: 0; +} + +.footer-section ul li { +margin-bottom: 0.5rem; +} + +.footer-section a { +color: #a0a0a0; +text-decoration: none; +transition: color 0.3s; +font-size: 0.9rem; +} + +.footer-section a:hover { +color: white; +} + +.with-icon { +display: flex; +align-items: center; +gap: 0.5rem; +} + +.with-icon img { +width: 16px; +height: 16px; +} + +.footer-logo { +grid-column: span 1; +} + +.footer-dragon { +width: 100px; +height: auto; +} + +.footer-bottom { +text-align: center; +padding-top: 2rem; +border-top: 1px solid rgba(255, 255, 255, 0.1); +font-size: 0.9rem; +color: #a0a0a0; +} + +.section-subtitle { + text-align: center; + margin-bottom: 2%; +} + +.follow-us { +margin-top: 2rem; +} + +@media (max-width: 1024px) { +.footer-content { + grid-template-columns: repeat(3, 1fr); +} + +.footer-logo { + grid-column: 3; + grid-row: 1; + justify-self: end; +} +} + +@media (max-width: 768px) { +.footer-content { + grid-template-columns: repeat(2, 1fr); +} + +.footer-logo { + grid-column: 1 / -1; + grid-row: 1; + justify-self: center; + margin-bottom: 2rem; +} +} + +@media (max-width: 480px) { +.footer-content { + grid-template-columns: 1fr; +} + +.footer-section { + text-align: center; +} + +.with-icon { + justify-content: center; +} +}