feat: add Favicon Generator app with ImageMagick WASM support

This commit is contained in:
2026-02-26 17:48:16 +01:00
parent d99c88df0e
commit 1f1b138089
16 changed files with 987 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
'use client';
import * as React from 'react';
import { AppPage } from '@/components/layout/AppPage';
import { FaviconGenerator } from '@/components/favicon/FaviconGenerator';
import { Globe, Shield, Zap } from 'lucide-react';
export default function FaviconPage() {
return (
<AppPage
title="Favicon Generator"
description="Create a complete set of icons for your website including PWA manifest and HTML code."
>
<div className="w-full max-w-7xl mx-auto space-y-8 pb-12">
<FaviconGenerator />
</div>
</AppPage>
);
}