aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-06-16 22:01:49 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-06-16 22:01:49 +0530
commit052d81f790ca89308908fd0e1dfa6b68ce0e7b68 (patch)
treefc0f5bd0ff2a53a7d6d5612dfd87467b0066c703
parent952b08bbc1f611496342ee43a17e9b2f340b0024 (diff)
(site): barebones
-rw-r--r--compromyse.xyz/base.html6
-rw-r--r--compromyse.xyz/index.html7
-rw-r--r--compromyse.xyz/partials/navbar.html17
3 files changed, 22 insertions, 8 deletions
diff --git a/compromyse.xyz/base.html b/compromyse.xyz/base.html
index d6d8ebe..afb809a 100644
--- a/compromyse.xyz/base.html
+++ b/compromyse.xyz/base.html
@@ -1,13 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
+
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home | COMPROMYSE</title>
+
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
+ <link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
+
</head>
- <body class="bg-zinc-900 text-pink-300">
+ <body class="bg-zinc-900 text-pink-300 font-[Pixelify_Sans]">
{{ content }}
</body>
</html>
diff --git a/compromyse.xyz/index.html b/compromyse.xyz/index.html
index 858ed54..e19f02a 100644
--- a/compromyse.xyz/index.html
+++ b/compromyse.xyz/index.html
@@ -1 +1,8 @@
{{ include "navbar.html" }}
+
+<div class="p-12">
+ <p class="text-4xl">
+ Hi there! I'm RAGHU.
+ </p>
+ <p>Programmer and Hacker.</p>
+</div>
diff --git a/compromyse.xyz/partials/navbar.html b/compromyse.xyz/partials/navbar.html
index 19734df..eb94b78 100644
--- a/compromyse.xyz/partials/navbar.html
+++ b/compromyse.xyz/partials/navbar.html
@@ -1,14 +1,17 @@
<nav class="w-full mx-auto mt-10">
- <div class="flex flex-wrap items-center px-10 gap-4">
- <a href="/" class="cursor-pointer text-base font-semibold">
+ <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg">
+
+ <a href="/" class="cursor-pointer font-semibold hover:underline">
COMPROMYSE
</a>
- <div class="flex items-center p-1 text-sm gap-x-2">
- <a href="#" class="flex items-center">
- [ BLOG ]
- </a>
- </div>
+ <a href="#" class="hover:underline">
+ [ BLOG ]
+ </a>
+
+ <a href="#" class="hover:underline">
+ [ ABOUT ]
+ </a>
</div>
</nav>