diff --git a/package.json b/package.json index 5717a64..68f9650 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "gameflow-website", "displayName": "Gameflow", + "description": "A Cross-Platform open source Retro gaming frontend designed for handheld and controllers. Focused on building a simple user experience and intuitive UI as a curated community driven experience.", "module": "index.ts", "type": "module", "private": true, diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e2f18dd..f4207f5 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,11 +1,31 @@ --- import "../assets/style.css"; import favicon from "../assets/favicon.ico"; +import pkg from "../../package.json"; +import preview from "../assets/screenshots/3dscreenshot.webp"; +import { getImage } from "astro:assets"; +const previewHref = new URL( + (await getImage({ src: preview, format: "png" })).src, + Astro.url, +).href; ---
+ + + + + + + + + + + + +