Skip to content

Commit be8d0af

Browse files
authored
fix: small typo and home button behavior (#1541)
1 parent 7590820 commit be8d0af

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const examples = [
2626
{
2727
title: 'Realtime voting via WebSockets 🔌',
2828
description:
29-
'A realtime, websockets powered voting app buit with Wasp in TypeScript.',
29+
'A realtime, websockets powered voting app built with Wasp in TypeScript.',
3030
authorName: 'wasp',
3131
authorImg: 'https://avatars.githubusercontent.com/u/55102317',
3232
repoName: 'waspleau-jobs-example',

0 commit comments

Comments
 (0)