Added metadta filesa

This commit is contained in:
2025-06-27 14:49:00 +02:00
parent e4c382a4dc
commit f8515d61bc
6 changed files with 59 additions and 0 deletions

16
src/app/manifest.ts Normal file
View File

@@ -0,0 +1,16 @@
import type { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Linker - Smart URL Shortener & Link Management",
short_name: "Linker",
description: "Transform long URLs into short, shareable links. Perfect for social media, emails, and anywhere you need clean, manageable links. Get started for free!",
start_url: "/",
display: "standalone",
icons: [{
src: '/favicon.ico',
sizes: 'any',
type: 'image/x-icon',
}],
}
}