Skip to content

Commit

Permalink
clean up some old urls
Browse files Browse the repository at this point in the history
  • Loading branch information
a-type committed May 3, 2024
1 parent 4c13ae6 commit 4087c28
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 49 deletions.
79 changes: 41 additions & 38 deletions apps/gnocchi/web/index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover"
/>
<title>Gnocchi</title>
<meta name="description" content="Your grocery list, done better" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/mask-icon.svg" color="#ffffff" />
<meta name="theme-color" content="#fdfdff" />
<meta charset="utf-8" />
<meta property="og:image" content="/og-image.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="A screenshot of a grocery list app transposed over a frying pan with various produce floating above it"
/>
<meta property="og:title" content="Gnocchi" />
<meta property="og:description" content="Your grocery list, done better" />
<meta property="og:url" content="https://gnocchi.club" />
<meta property="og:site_name" content="Gnocchi" />
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover"
/>
<title>Gnocchi</title>
<meta name="description" content="Your grocery list, done better" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/mask-icon.svg" color="#ffffff" />
<meta name="theme-color" content="#fdfdff" />
<meta charset="utf-8" />
<meta property="og:image" content="/og-image.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="A screenshot of a grocery list app transposed over a frying pan with various produce floating above it"
/>
<meta property="og:title" content="Gnocchi" />
<meta property="og:description" content="Your grocery list, done better" />
<meta property="og:url" content="https://gnocchi.biscuits.club" />
<meta property="og:site_name" content="Gnocchi" />

<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image:alt"
content="A screenshot of a grocery list app transposed over a frying pan with various produce floating above it"
/>
<meta name="twitter:title" content="Gnocchi" />
<meta name="twitter:description" content="Your grocery list, done better" />
<meta name="twitter:image" content="https://gnocchi.club/og-image.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image:alt"
content="A screenshot of a grocery list app transposed over a frying pan with various produce floating above it"
/>
<meta name="twitter:title" content="Gnocchi" />
<meta name="twitter:description" content="Your grocery list, done better" />
<meta
name="twitter:image"
content="https://gnocchi.biscuits.club/og-image.png"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>

<body className="theme-lemon">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<body className="theme-lemon">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion apps/gnocchi/web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function ErrorFallback() {
<P>
Sorry about this. The app has crashed. You can try refreshing, but if
that doesn&apos;t work,{' '}
<a className="underline font-bold" href="mailto:hi@gnocchi.club">
<a className="underline font-bold" href="mailto:hi@biscuits.club">
let me know about it.
</a>
</P>
Expand Down
14 changes: 7 additions & 7 deletions apps/gnocchi/web/src/components/menu/BugButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { Button, ButtonProps } from '@a-type/ui/components/button';
export interface BugButtonProps extends ButtonProps {}

export function BugButton(props: BugButtonProps) {
return (
<a href="mailto:hi@gnocchi.club" target="_blank" rel="noopener noreferrer">
<Button color="default" {...props}>
Report a bug
</Button>
</a>
);
return (
<a href="mailto:hi@biscuits.club" target="_blank" rel="noopener noreferrer">
<Button color="default" {...props}>
Report a bug
</Button>
</a>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function RecipeSavePrompt({}: RecipeSavePromptProps) {
onboarding={saveHubRecipeOnboarding}
step="save"
>
<H2>Welcome to Gnocchi.club!</H2>
<H2>Welcome to Gnocchi!</H2>
<P>
You&apos;re about to save a copy of a recipe to your collection.
Press the Save button to get started.
Expand Down
4 changes: 2 additions & 2 deletions apps/gnocchi/web/src/service-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ self.addEventListener('push', (event) => {

const commonOptions = {
tag: 'list-change',
icon: 'https://gnocchi.club/android-chrome-192x192.png',
badge: 'https://gnocchi.club/badge.png',
icon: 'https://gnocchi.biscuits.club/android-chrome-192x192.png',
badge: 'https://gnocchi.biscuits.club/badge.png',
};

if (!currentNotification) {
Expand Down

0 comments on commit 4087c28

Please sign in to comment.