splash screens

This commit is contained in:
zmeyer44 2023-10-15 14:32:25 -04:00
parent b2ec3a5c03
commit 5db8be1c5b
2 changed files with 13 additions and 0 deletions

View File

@ -58,6 +58,9 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning className="">
<meta name="apple-mobile-web-app-capable" content="yes"></meta>
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Flockstr" />
<head>
<link
href="splashscreens/iphone5_splash.png"

10
app/robots.ts Normal file
View File

@ -0,0 +1,10 @@
import { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
};
}