Skip to content

Commit 39620ee

Browse files
committed
Merge branch 'release'
2 parents 62aa2b7 + eb683fa commit 39620ee

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

examples/websockets-realtime-voting/src/client/Layout.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const customTheme = {
1111
color: {
1212
primary: "bg-red-500 hover:bg-red-600",
1313
},
14-
},
14+
}
1515
};
1616

1717
export const Layout = ({ children }) => {
@@ -20,9 +20,9 @@ export const Layout = ({ children }) => {
2020
<Flowbite theme={{ theme: customTheme }}>
2121
<div className="p-8">
2222
<Navbar fluid rounded>
23-
<Navbar.Brand href="https://flowbite-react.com">
23+
<Navbar.Brand className="cursor-pointer">
2424
<img
25-
alt="Flowbite React Logo"
25+
alt="Fox Logo"
2626
className="mr-3 h-6 sm:h-9"
2727
src={Logo}
2828
/>

web/src/components/ExampleWaspApps.js

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,33 @@ import { GitHub, ArrowUpRight, Monitor } from 'react-feather'
55

66
const examples = [
77
{
8-
title: 'Waspello 📝',
9-
description: 'A Trello clone made with Wasp.',
10-
tags: ['Optimistic UI Updates'],
11-
level: 'Beginner',
8+
title: 'Todo App (TypeScript) ✅',
9+
description: 'A famous To-Do list app, implemented in TypeScript.',
1210
authorName: 'wasp',
1311
authorImg: 'https://avatars.githubusercontent.com/u/55102317',
14-
repoName: 'waspello-example-app',
15-
repoUrl: 'https://github.com/wasp-lang/wasp/tree/main/examples/waspello',
16-
demoUrl: 'https://waspello-demo.netlify.app/',
12+
repoName: 'todo-app-ts',
13+
repoUrl: 'https://github.com/wasp-lang/wasp/tree/main/examples/todo-app-in-typescript',
14+
//demoUrl: 'https://waspello-demo.netlify.app/',
1715
// todo: try in GitPod/Replit url
1816
},
1917
{
20-
title: 'Real World App 🐑',
21-
description: 'A Medium clone made with Wasp and Material UI.',
22-
authorName: 'wasp',
23-
authorImg: 'https://avatars.githubusercontent.com/u/55102317',
24-
repoName: 'real-world-app',
25-
repoUrl: 'https://github.com/wasp-lang/wasp/tree/main/examples/realworld',
26-
demoUrl: 'https://wasp-rwa.netlify.app/',
18+
title: 'CoverLetterGPT 🤖',
19+
description: 'Generate cover letters based on your CV and job description. Powered by ChatGPT.',
20+
authorName: 'vincanger',
21+
authorImg: 'https://avatars.githubusercontent.com/u/70215737',
22+
repoName: 'cover-letter-gpt',
23+
repoUrl: 'https://github.com/vincanger/coverlettergpt',
24+
demoUrl: 'https://coverlettergpt.xyz/',
2725
},
2826
{
29-
title: 'Waspleau 📊',
27+
title: 'Realtime voting via WebSockets 🔌',
3028
description:
31-
'A simple data dashboard that makes use of Wasp async jobs feature.',
29+
'A realtime, websockets powered voting app built with Wasp in TypeScript.',
3230
authorName: 'wasp',
3331
authorImg: 'https://avatars.githubusercontent.com/u/55102317',
3432
repoName: 'waspleau-jobs-example',
35-
repoUrl: 'https://github.com/wasp-lang/wasp/tree/main/examples/waspleau',
36-
demoUrl: 'https://waspleau-app-client.fly.dev/',
33+
repoUrl: 'https://github.com/wasp-lang/wasp/tree/main/examples/websockets-realtime-voting',
34+
demoUrl: 'https://websockets-client-production.up.railway.app/login',
3735
},
3836
]
3937

web/src/css/custom.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
/* Infima overrides */
6060
--ifm-container-width-xl: 1280px;
61-
--ifm-font-family-base: "Inter";
61+
--ifm-font-family-base: "Inter", sans-serif;
6262
--ifm-color-primary: #bf9900; /* wasp color (ffcc00) darkened by 25% */
6363
--ifm-color-primary-dark: #8a6f04;
6464
--ifm-color-primary-darker: rgb(31, 165, 136);

web/src/pages/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
html {
3-
font-family: Inter;
3+
font-family: Inter, sans-serif;
44
}
55

66
html,

0 commit comments

Comments
 (0)