feat: initial commit
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled

This commit is contained in:
Rudra Saraswat 2025-05-30 00:12:32 +01:00
commit 16dba10451
20 changed files with 3924 additions and 0 deletions

View file

@ -0,0 +1,27 @@
---
import { ClientRouter } from "astro:transitions";
import '@fontsource/jetbrains-mono';
import Header from '../components/Header.astro';
import '../styles/global.css';
const { pageTitle, pageCustomTitle = pageTitle } = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{pageCustomTitle} | ruds</title>
<ClientRouter />
</head>
<body>
<Header />
<h2>{pageTitle}</h2>
<slot />
</body>
</html>