feat: add logo with metadata
This commit is contained in:
@@ -1,41 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<!-- ✅ App Title -->
|
||||
<title>minxa.lol - Shorten URLs with Style</title>
|
||||
|
||||
<!-- ✅ Responsive -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<!-- ✅ Description -->
|
||||
<meta name="description" content="minxa.lol is a fun and simple URL shortener. Paste a long link and get a short, stylish one!" />
|
||||
|
||||
<!-- ✅ Theme color -->
|
||||
<meta name="theme-color" content="#E9D5FF" /> <!-- light purple -->
|
||||
|
||||
<!-- ✅ Open Graph (for social sharing) -->
|
||||
<meta property="og:title" content="minxa.lol - Stylish URL Shortener" />
|
||||
<meta property="og:description" content="Create short, playful links with minxa.lol" />
|
||||
<meta property="og:url" content="https://minxa.lol" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="/logo192.png" /> <!-- Replace with your custom image -->
|
||||
|
||||
<!-- ✅ Favicon -->
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
|
||||
<!-- ✅ Google Fonts (if using) -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- ✅ PWA support -->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
|
||||
<!-- Default CRA meta -->
|
||||
<meta name="robots" content="index, follow" />
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run minxa.lol.</noscript>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 31 KiB |
@@ -20,7 +20,7 @@
|
||||
<meta property="og:description" content="Create short, playful links with minxa.lol" />
|
||||
<meta property="og:url" content="https://minxa.lol" />
|
||||
<meta property="og:type" content="website" />
|
||||
<!-- <meta property="og:image" content="/logo192.png" /> -->
|
||||
<meta property="og:image" content="/logo.png" />
|
||||
|
||||
<!-- ✅ Favicon -->
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
|
||||
BIN
public/logo.png
Normal file
BIN
public/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"short_name": "minxa",
|
||||
"name": "minxa.lol - URL Shortener",
|
||||
"description": "A fun and minimalist URL shortener",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
@@ -8,18 +9,18 @@
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "logo192.png",
|
||||
"src": "logo.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "logo512.png",
|
||||
"src": "logo.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
"theme_color": "#E9D5FF",
|
||||
"background_color": "#FFFFFF"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user