feat: add Favicon Generator app with ImageMagick WASM support
This commit is contained in:
19
app/(app)/favicon/page.tsx
Normal file
19
app/(app)/favicon/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user