2
0

Compare commits

..

2 Commits

Author SHA1 Message Date
78cad4e26c feat(public): add flame favicon
Signed-off-by: Noa Virellia <noa@requiem.garden>
2026-01-27 16:32:44 +08:00
7d6d41d6e2 fix(layout): shorten default site title
Signed-off-by: Noa Virellia <noa@requiem.garden>
2026-01-27 16:30:08 +08:00
3 changed files with 9 additions and 8 deletions

1
public/favicon.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#F1978E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-flame-icon lucide-flame"><path d="M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"/></svg>

After

Width:  |  Height:  |  Size: 333 B

View File

@@ -7,14 +7,14 @@ interface Props {
} }
const { const {
title = "Ignis Network - Cat-Inspired Meditation & Mindfulness", title = 'Ignis Network',
description = "Redefining the digital frontier with next-generation internet services and advanced AI.", description = 'Redefining the digital frontier with next-generation internet services and advanced AI.',
canonicalPath = "", canonicalPath = '',
noindex = false, noindex = false,
} = Astro.props; } = Astro.props;
const siteUrl = Astro.site?.href || ""; const siteUrl = Astro.site?.href || '';
const canonicalUrl = `${siteUrl.replace(/\/$/, "")}${canonicalPath}`; const canonicalUrl = `${siteUrl.replace(/\/$/, '')}${canonicalPath}`;
--- ---
<!doctype html> <!doctype html>

View File

@@ -1,10 +1,10 @@
--- ---
import Layout from "../layouts/Layout.astro"; import Layout from '../layouts/Layout.astro';
import HomePage from "../components/HomePage"; import HomePage from '../components/HomePage';
--- ---
<Layout <Layout
title="Ignis Network - Cat-Inspired Meditation & Mindfulness" title="Ignis Network"
description="Redefining the digital frontier with next-generation internet services and advanced AI." description="Redefining the digital frontier with next-generation internet services and advanced AI."
canonicalPath="/" canonicalPath="/"
> >