Skip to content

Commit e0241ad

Browse files
committed
refactor: replace SVG icons with Iconify components in Header and OpenSource sections
- Updated Header.astro to use Iconify for external link, donate, and menu icons. - Replaced SVG icons with Iconify components for consistency and improved maintainability. - Updated OpenSource.astro to use Iconify for the open-source badge and social media links. - Added new dependencies for Iconify JSON packages in package.json.
1 parent a296b24 commit e0241ad

File tree

5 files changed

+616
-39
lines changed

5 files changed

+616
-39
lines changed

website/astro.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import { defineConfig } from 'astro/config';
22
import tailwind from '@astrojs/tailwind';
33
import sitemap from '@astrojs/sitemap';
4+
import icon from 'astro-icon';
45

56
export default defineConfig({
67
site: 'https://Prot10.github.io',
78
base: '/MyMacCleaner',
89
integrations: [
910
tailwind(),
10-
sitemap()
11+
sitemap(),
12+
icon()
1113
],
1214
output: 'static',
1315
build: {

0 commit comments

Comments
 (0)