20 lines
565 B
TypeScript
20 lines
565 B
TypeScript
|
|
'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>
|
||
|
|
);
|
||
|
|
}
|