Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 133 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NekoScripty | System Automation & Scripting</title>
<meta name="description" content="Portfolio of NekoScripty - Python, Bash, and Linux Automation enthusiast.">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>

<nav>
<div class="nav-container">
<div class="logo">
<span class="text-gradient">Neko</span>Scripty
</div>

<button class="menu-toggle" aria-label="Toggle Navigation">
<i class="fas fa-bars"></i>
</button>

<div class="nav-menu">
<div class="nav-links">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
</div>
<div class="nav-right">
<a href="https://github.com/NekoScripty" target="_blank" class="btn-github" aria-label="Follow NekoScripty on GitHub">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</div>
</nav>

<header id="home">
<div class="container hero-content">
<div class="hero-text">
<h2 class="fade-in">Hello World, I'm</h2>
<h1><span class="text-gradient">NekoScripty</span></h1>
<h2 class="subtitle">Scripting, Programming & System Automation</h2>
<div class="cta-container">
<a href="#projects" class="btn-primary"><i class="fas fa-code-branch"></i> View Repositories</a>
</div>
</div>
<div class="hero-image">
<div class="image-wrapper">
<img src="pfp.jpg" alt="NekoScripty Profile" onerror="this.src='https://via.placeholder.com/300/1e1e2e/cba6f7?text=Neko'">
</div>
</div>
</div>
</header>

<section id="about" class="alt-bg">
<div class="container">
<h2 class="section-title">About <span class="text-gradient">Me</span></h2>
<div class="about-card">
<p>
I am a dedicated <strong>Technology Enthusiast</strong> and <strong>Automation Learner</strong> with a focus on system-level logic.
I am mastering <strong>Python</strong> and <strong>Bash Scripting</strong> to create efficient Linux environments and Automation Utility Tools
that streamline complex tasks and optimize digital workflows.
</p>
</div>
</div>
</section>

<section id="skills">
<div class="container">
<h2 class="section-title">Tech <span class="text-gradient">Stack</span></h2>
<div class="skills-container">
<div class="skill-tag"><i class="fab fa-linux"></i> Linux OS</div>
<div class="skill-tag"><i class="fab fa-python"></i> Python</div>
<div class="skill-tag"><i class="fas fa-terminal"></i> Bash Scripting</div>
<div class="skill-tag"><i class="fab fa-github"></i> GitHub</div>
<div class="skill-tag"><i class="fas fa-code"></i> Vim</div>
</div>
</div>
</section>

<section id="projects" class="alt-bg">
<div class="container">
<h2 class="section-title">Featured <span class="text-gradient">Repositories</span></h2>
<div class="projects-grid">
<article class="project-card">
<div class="project-header">
<h3><i class="far fa-folder-open"></i> NekoDots</h3>
</div>
<p>Personal configuration scripts designed to rapidly deploy highly-optimized and customized Linux and Vim environments.</p>
<div class="project-links">
<a href="https://github.com/NekoScripty/NekoDots" target="_blank" rel="noopener"><i class="fab fa-github"></i> Repository</a>
</div>
</article>

<article class="project-card">
<div class="project-header">
<h3><i class="far fa-folder-open"></i> nekoplay</h3>
</div>
<p>A Bashscript mpv and yt-dlp Music player for 32-bit float precision. Spatial soundstage. Pure IEM protection. Minimalist soul, elite sound.</p>
<div class="project-links">
<a href="https://github.com/NekoScripty/nekoplay" target="_blank" rel="noopener"><i class="fab fa-github"></i> Repository</a>
</div>
</article>
</div>
</div>
</section>

<footer>
<div class="container">
<p>&copy; 2026 NekoScripty. Built with <i class="fas fa-heart" style="color: var(--mauve)"></i> for the Linux community.</p>
</div>
</footer>

<script>
// Simple Mobile Menu Toggle
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.nav-menu');

menuToggle.addEventListener('click', () => {
navMenu.classList.toggle('active');
});

// Close menu when link is clicked
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
navMenu.classList.remove('active');
});
});
</script>
</body>
</html>
Binary file added pfp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
246 changes: 246 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,246 @@
:root {
--crust: #11111b;
--mantle: #181825;
--base: #1e1e2e;
--surface0: #313244;
--surface1: #45475a;
--text: #cdd6f4;
--subtext1: #bac2de;
--subtext0: #a6adc8;
--blue: #89b4fa;
--mauve: #cba6f7;
--sapphire: #74c7ec;
--gradient: linear-gradient(90deg, var(--mauve), var(--blue));
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
scroll-behavior: smooth;
}

body {
background-color: var(--base);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 7%;
}

.text-gradient {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* --- Navigation --- */
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(24, 24, 37, 0.85);
backdrop-filter: blur(12px);
z-index: 2000;
border-bottom: 1px solid var(--surface0);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
max-width: 1200px;
margin: 0 auto;
padding: 0 5%;
}

.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }

.nav-menu { display: flex; align-items: center; gap: 2.5rem; }

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
color: var(--subtext1);
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
transition: 0.3s;
}

.nav-links a:hover { color: var(--mauve); }

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--text);
font-size: 1.5rem;
cursor: pointer;
}

/* --- Buttons --- */
.btn-primary, .btn-github {
padding: 0.7rem 1.6rem;
border-radius: 10px;
font-weight: 700;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.6rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
background: var(--gradient);
color: var(--crust) !important;
}

.btn-github {
background: var(--surface0);
color: var(--text) !important;
border: 1px solid var(--surface1);
}

.btn-primary:hover, .btn-github:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
filter: brightness(1.1);
}

/* --- Hero --- */
header {
min-height: 100vh;
display: flex;
align-items: center;
padding-top: 80px;
}

.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 4rem;
}

.hero-text h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1; margin: 1rem 0; }
.hero-text h2 { font-weight: 400; color: var(--subtext1); }
.hero-text .subtitle { font-size: 1.2rem; margin-bottom: 2.5rem; }

.image-wrapper {
background: var(--gradient);
padding: 6px;
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
animation: morph 8s ease-in-out infinite;
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-image img {
width: 320px;
height: 320px;
object-fit: cover;
border-radius: inherit;
border: 6px solid var(--base);
}

@keyframes morph {
0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* --- Sections --- */
section { padding: 6rem 0; }
.alt-bg { background: var(--mantle); }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 4rem; }

.about-card {
background: var(--surface0);
padding: 3rem;
border-radius: 20px;
border: 1px solid var(--surface1);
max-width: 850px;
margin: 0 auto;
font-size: 1.1rem;
}

.skills-container {
display: flex;
flex-wrap: wrap;
gap: 1.2rem;
justify-content: center;
}

.skill-tag {
background: var(--mantle);
padding: 0.8rem 1.5rem;
border-radius: 12px;
border: 1px solid var(--surface0);
display: flex;
align-items: center;
gap: 0.8rem;
transition: 0.3s;
}

.skill-tag:hover { border-color: var(--blue); transform: scale(1.05); }

/* --- Projects --- */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.project-card {
background: var(--base);
padding: 2.5rem;
border-radius: 18px;
border: 1px solid var(--surface0);
transition: 0.4s;
}

.project-card h3 { margin-bottom: 1rem; color: var(--mauve); }
.project-card p { color: var(--subtext0); margin-bottom: 2rem; }
.project-card:hover {
border-color: var(--mauve);
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

footer {
text-align: center;
padding: 3rem 0;
background: var(--crust);
border-top: 1px solid var(--surface0);
}

/* --- Responsive Layout --- */
@media (max-width: 968px) {
.hero-content { flex-direction: column-reverse; text-align: center; }
.hero-image img { width: 260px; height: 260px; }

.menu-toggle { display: block; }

.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--mantle);
flex-direction: column;
padding: 3rem;
transition: 0.4s;
}

.nav-menu.active { left: 0; }

.nav-links { flex-direction: column; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 1.2rem; }
}
Loading