Skip to content

Commit

Permalink
fix: theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
Eveeifyeve committed Jul 7, 2024
1 parent c85cc60 commit afa5749
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/head.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
import { SEO } from "astro-seo";
const { title, customDescription, bannerPath } = Astro.props;
export interface Props {
title: string;
customDescription?: string;
bannerPath?: string;
title: string;
customDescription?: string;
bannerPath?: string;
}
// SEO SETTINGS
const descr = customDescription ?? "A Nice Opensourced Client.";
const url = "https://teaclient.net";
const banner = bannerPath ?? "/banner/deafult.webp";
const favicon = "/Favicon.webp";
const theme_color = "#d97dff";
const theme_color = "#bc21ff";
const language = "en-us";
---

Expand Down

0 comments on commit afa5749

Please sign in to comment.