refactor: streamline, refine and polish

This commit is contained in:
2026-02-27 12:35:02 +01:00
parent efe3c81576
commit ee7e5ec06c
21 changed files with 606 additions and 735 deletions

View File

@@ -3,7 +3,6 @@
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 (
@@ -11,9 +10,7 @@ export default function FaviconPage() {
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>
<FaviconGenerator />
</AppPage>
);
}