Optimizations
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m40s

This commit is contained in:
2025-12-22 13:05:29 -07:00
parent 03792ce1d6
commit 8341938692
5 changed files with 12 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ import { Icon } from "astro-icon/components";
class="btn btn-ghost text-xl font-bold tracking-tight hover:bg-transparent hover:text-primary transition-colors gap-2"
aria-label="Home"
>
<img src="/logo.svg" alt="" class="h-8 w-8" aria-hidden="true" />
<img src="/logo.svg" alt="" width="32" height="32" class="h-8 w-8" aria-hidden="true" />
<span class="hidden sm:inline">{siteConfig.header.logo.text}</span>
<span class="sm:hidden">{siteConfig.header.mobileLogoText}</span>
</a>

View File

@@ -3,6 +3,7 @@ import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro";
import { siteConfig } from "../config/site";
import "../styles/global.css";
import "@fontsource/inter";
interface Props {
title?: string;
@@ -25,9 +26,6 @@ const metaTitle =
<meta name="generator" content={Astro.generator} />
<meta name="description" content={description} />
<title>{metaTitle}</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
</head>
<body class="min-h-screen flex flex-col bg-base-100 font-sans antialiased">
<Header />

View File

@@ -16,5 +16,5 @@ const pageMetaInfo = {
<HeroSection />
<ServicesSection />
<AboutSection />
<ContactSection client:load />
<ContactSection client:visible />
</Layout>