Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions apps/home/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
535 changes: 535 additions & 0 deletions apps/home/home.js

Large diffs are not rendered by default.

Binary file added apps/home/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/home/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions apps/home/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>home — launcher for your Solid pod</title>
<meta name="description" content="A macOS-style dock of every Solid app installed on your pod. Reads /public/apps/ live — install a bundle, refresh, your apps appear.">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="icon-192.png">
<meta name="theme-color" content="#7c4dff">
<link rel="canonical" href="https://solid-apps.github.io/home/">

<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://solid-apps.github.io/home/">
<meta property="og:site_name" content="home">
<meta property="og:title" content="home — launcher for your Solid pod">
<meta property="og:description" content="A macOS-style dock of every Solid app installed on your pod. Reads /public/apps/ live — install a bundle, refresh, your apps appear.">
<meta property="og:image" content="https://solid-apps.github.io/home/og.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="home — Your apps. On your pod. A launcher for every Solid app on your pod.">

<!-- Twitter card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://solid-apps.github.io/home/">
<meta name="twitter:title" content="home — launcher for your Solid pod">
<meta name="twitter:description" content="A macOS-style dock of every Solid app on your pod.">
<meta name="twitter:image" content="https://solid-apps.github.io/home/og.png">
</head>
<body style="margin:0">
<div id="app"></div>
<script type="module" src="home.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions apps/home/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "home",
"short_name": "home",
"description": "Launcher for every Solid app on your pod",
"start_url": "./",
"scope": "./",
"display": "standalone",
"background_color": "#7c4dff",
"theme_color": "#7c4dff",
"icons": [
{ "src": "icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" },
{ "src": "icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any" }
]
}
Binary file added apps/home/og.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading