Newer
Older
mobile.raikyakun.app / node / src / app / page3.tsx
nutrition on 24 Jul 2024 498 bytes first commit
import { Metadata } from "next";

/** Add your relevant code here for the issue to reproduce */
export default function Home() {
  return <h1>PWA 💖 Next.js</h1>;
}

const APP_NAME = "next-pwa example";
const APP_DESCRIPTION = "This is an example of using next-pwa plugin";

export const metadata: Metadata = {
  title: "PWA 💖 Next.js",
  description: APP_DESCRIPTION,
  applicationName: APP_NAME,
  appleWebApp: {
    capable: true,
    title: APP_NAME,
    statusBarStyle: "default",
  },
};