diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..e651073 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,15 @@ +{ + "name": "Accord’s Library", + "short_name": "Accord’s Library", + "start_url": ".", + "display": "standalone", + "background_color": "#FFEDD8", + "theme_color": "#FFEDD8", + "description": "Accord's Library aims at gathering and archiving all of Yoko Taro’s work. Yoko Taro is a Japanese video game director and scenario writer.", + "icons": [{ + "src": "favicon.png", + "sizes": "551x551", + "type": "image/png" + }] + } + \ No newline at end of file diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx index 2ff45cc..22d029f 100644 --- a/src/pages/_document.tsx +++ b/src/pages/_document.tsx @@ -36,6 +36,10 @@ class MyDocument extends Document { + + + +
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2acd685..e84d3e1 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,8 +1,10 @@ import AppLayout from "components/AppLayout"; import ContentPanel from "components/Panels/ContentPanel"; +import SVG from "components/SVG"; import { getWebsiteInterface } from "graphql/operations"; import { GetWebsiteInterfaceQuery } from "graphql/operations-types"; import { GetStaticProps } from "next"; +import Script from "next/script"; type HomeProps = { langui: GetWebsiteInterfaceQuery; }; @@ -12,7 +14,29 @@ export default function Home(props: HomeProps): JSX.Element { const contentPanel = (
Accord’s Library aims at gathering and archiving all of Yoko
@@ -136,7 +160,11 @@ export default function Home(props: HomeProps): JSX.Element {
return (
<>
-