Skip to content

Commit

Permalink
switch to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mudkipdev committed May 23, 2024
1 parent abaab2e commit a9ea43d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions src/layouts/Page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import "@styles/global.css";
const { title } = Astro.props;
---
<html lang="en">
<head>
<title>{title}</title>
<head>
<title>{title}</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link
rel="alternate" type="application/rss+xml"
Expand All @@ -17,13 +17,13 @@ const { title } = Astro.props;
<meta name="theme-color" content="#C6A0F6">
<meta property="og:title" content={title} />
<meta property="og:url" content="https://mudkip.dev" />
</head>
<body>
</head>
<body>
<h1>{title}</h1>
<Header />
<main>
<slot />
</main>
<script is:inline type="text/javascript" src="/oneko.js"></script>
</body>
</body>
</html>
14 changes: 7 additions & 7 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import Page from "@layouts/Page.astro";
import Footer from "@components/Footer.astro";
---
<Page title="mudkip">
<p>i use NixOS btw</p>
<ul>
<li>Matrix: <a href="https://matrix.to/#/@mudkipdev:matrix.org" target="_blank">@mudkipdev:matrix.org</a></li>
<li>GitHub: <a href="https://github.com/mudkipdev" target="_blank">mudkipdev</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<Footer />
<p>i use NixOS btw</p>
<ul>
<li>Matrix: <a href="https://matrix.to/#/@mudkipdev:matrix.org" target="_blank">@mudkipdev:matrix.org</a></li>
<li>GitHub: <a href="https://github.com/mudkipdev" target="_blank">mudkipdev</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<Footer />
</Page>

0 comments on commit a9ea43d

Please sign in to comment.