mirror of
https://github.com/anotherhadi/blog.git
synced 2026-05-20 05:32:32 +02:00
a74f6b91d4
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
116 lines
2.9 KiB
Plaintext
116 lines
2.9 KiB
Plaintext
---
|
|
import "../styles/global.css";
|
|
import { ClientRouter } from "astro:transitions";
|
|
import Oneko from "../components/Oneko.astro";
|
|
import Console from "../components/Console.astro";
|
|
import Navbar from "../components/Navbar.astro";
|
|
|
|
interface Props {
|
|
title?: string;
|
|
description?: string;
|
|
}
|
|
|
|
const {
|
|
title = "Another Hadi",
|
|
description = "Infosec engineer passionate about Linux/NixOS, blockchains, OSINT & FOSS. Hacking with Go, exploring open tech, and contributing whenever I can 🐧",
|
|
} = Astro.props;
|
|
|
|
const anim = {
|
|
old: { name: "blurFadeOut", duration: "0.1s", easing: "ease-in-out", fillMode: "forwards" },
|
|
new: { name: "blurFadeIn", duration: "0.1s", easing: "ease-in-out", fillMode: "backwards" },
|
|
};
|
|
const pageTransition = { forwards: anim, backwards: anim };
|
|
|
|
const origin = Astro.url.origin;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en" transition:animate={pageTransition} data-theme="hadi">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="description" content={description} />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
|
|
<ClientRouter />
|
|
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content={origin} />
|
|
<meta property="og:image" content={`${origin}/images/og_home.png`} />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content={title} />
|
|
<meta name="twitter:description" content={description} />
|
|
<meta name="twitter:image" content={`${origin}/images/og_home.png`} />
|
|
|
|
<link
|
|
rel="alternate"
|
|
type="application/rss+xml"
|
|
title="Another Hadi RSS Feed"
|
|
href="/rss.xml"
|
|
/>
|
|
|
|
<script
|
|
is:inline
|
|
defer
|
|
src="https://umami.hadi.icu/script.js"
|
|
data-website-id="91b0c3a1-130a-4974-be47-078bc092cec8"
|
|
data-domains="hadi.icu,www.hadi.icu"></script>
|
|
</head>
|
|
<body class="min-h-screen pt-12">
|
|
<Navbar />
|
|
<slot />
|
|
|
|
<Oneko />
|
|
<Console />
|
|
|
|
<style is:global>
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
@keyframes pageLoadBlurFade {
|
|
0% {
|
|
opacity: 0;
|
|
filter: blur(8px);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
filter: blur(0px);
|
|
}
|
|
}
|
|
|
|
html {
|
|
animation: pageLoadBlurFade 0.1s ease-in-out;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
@keyframes blurFadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
filter: blur(10px);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
filter: blur(0px);
|
|
}
|
|
}
|
|
|
|
@keyframes blurFadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
filter: blur(0px);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
filter: blur(10px);
|
|
}
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|