favicon and logo
All checks were successful
Lint / Lint (push) Successful in 1m44s

This commit is contained in:
Felix Schulze 2025-03-04 18:57:43 +01:00
parent b1952edb84
commit bd9b22c8e3
12 changed files with 28 additions and 2 deletions

BIN
app/apple-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
app/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
app/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

3
app/icon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 824 KiB

View File

@ -28,6 +28,7 @@ export default function RootLayout({
selfHosted={true}
enabled={true}
/>
<meta name="apple-mobile-web-app-title" content="BAM" />
</head>
<body className={cn("min-h-screen bg-background font-sans antialiased", inter.variable)}>
{children}

21
app/manifest.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "Banger & Mash",
"short_name": "BAM",
"icons": [
{
"src": "/favicon/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/favicon/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

View File

@ -5,7 +5,7 @@ export default function Page() {
return (
<div className="w-4/5 max-w-2xl mx-auto my-12">
<Image
src="/image/bam.png"
src="/image/bam.svg"
alt="Bangers and Mash GBG"
width={200}
height={200}

View File

@ -26,7 +26,7 @@ async function listmonk(data: listmonkData): Promise<string> {
try {
const response = await fetch(`${listmonkUrl}subscribers`, options);
if (!response.ok) {
return "Error. Please try again soon.";
return "Error. Please try again";
}
return "Thanks for signing up! Please check your email for a confirmation.";
} catch (error) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 694 KiB

1
public/image/bam.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB