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
1 change: 0 additions & 1 deletion src/components/MainPageTitle/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const { title, subtitle, imageSrc, blurImage } = Astro.props;
<div class="flex flex-col items-center gap-2">
<h1
class="text-balance text-center font-heading text-3xl font-medium uppercase tracking-wider max-md:flex-1 md:text-5xl"
transition:name="page-title"
>
{title}
</h1>
Expand Down
4 changes: 1 addition & 3 deletions src/layouts/RootLayout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
import { ClientRouter } from "astro:transitions";
import Analytics from "@vercel/analytics/astro";
import "@fontsource/tomorrow/400.css";
import "@fontsource/tomorrow/500.css";
Expand All @@ -9,7 +8,7 @@ import EnvHint from "@/components/EnvHint/EnvHint.astro";
import { Toaster } from "@/components/ui/sonner";
---

<html lang="en" class="dark" transition:animate="none">
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<meta
Expand All @@ -31,7 +30,6 @@ import { Toaster } from "@/components/ui/sonner";
/>
<meta name="generator" content={Astro.generator} />
<meta name="theme-color" content="#171717" />
<ClientRouter />
<slot name="seo" />
<slot name="ld+json" />
</head>
Expand Down