Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve configuration page #25

Merged
merged 5 commits into from
Nov 1, 2023
Merged
Changes from 1 commit
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
Next Next commit
web: Add favicons
tbantle22 committed Oct 31, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a7e96311566cde1e9bc3327fb18f67f39d598957
22 changes: 15 additions & 7 deletions packages/web/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "@components/AceEditor/ace-editor.css";
import "@components/util/KeyNav/index.css";
import { withApollo } from "@lib/apollo";
import { colors } from "@lib/tailwind";
import "github-markdown-css/github-markdown-light.css";
import App from "next/app";
import Head from "next/head";
@@ -22,9 +23,9 @@ export default class DoltSQLWorkbench extends App {
return (
<>
<Head>
{/* <link
<link
rel="apple-touch-icon"
sizes="180x180"
sizes="76x76"
href="/favicon/apple-touch-icon.png"
/>
<link
@@ -43,11 +44,18 @@ export default class DoltSQLWorkbench extends App {
<link
rel="mask-icon"
href="/favicon/safari-pinned-tab.svg"
color="#5bbad5"
/> */}
<link rel="icon" href="/favicon.ico" />
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="theme-color" content="#182134" />
color={colors["ld-mediumblue"]}
/>
<link rel="shortcut icon" href="/favicon/favicon.ico" />
<meta
name="msapplication-TileColor"
content={colors["ld-mediumblue"]}
/>
<meta
name="msapplication-config"
content="/favicon/browserconfig.xml"
/>
<meta name="theme-color" content={colors["ld-mediumblue"]} />
</Head>
<WrappedPage {...pageProps} />
</>
Binary file removed packages/web/public/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 packages/web/public/favicon/apple-touch-icon.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 packages/web/public/favicon/favicon-16x16.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 packages/web/public/favicon/favicon-32x32.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 packages/web/public/favicon/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions packages/web/public/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}