Browse Source

Update navbar and landing page

drawing-pad
Stephanie Gredell 1 month ago
parent
commit
9b59b4489d
  1. 4
      frontend/src/components/Navbar/Navbar.tsx
  2. 6
      frontend/src/pages/LandingPage.tsx

4
frontend/src/components/Navbar/Navbar.tsx

@ -79,7 +79,7 @@ export function Navbar() { @@ -79,7 +79,7 @@ export function Navbar() {
width="48"
height="48"
loading="eager"
fetchPriority="high"
fetchpriority="high"
/>
<h1 className="text-3xl md:text-4xl font-bold text-foreground" style={{ fontFamily: "'Butterfly Kids', cursive" }}>Rainbows, Cupcakes & Unicorns</h1>
<img
@ -89,7 +89,7 @@ export function Navbar() { @@ -89,7 +89,7 @@ export function Navbar() {
width="48"
height="48"
loading="eager"
fetchPriority="high"
fetchpriority="high"
/>
</Link>

6
frontend/src/pages/LandingPage.tsx

@ -56,7 +56,7 @@ export function LandingPage() { @@ -56,7 +56,7 @@ export function LandingPage() {
width="80"
height="80"
loading="eager"
fetchPriority={app.id === 'videos' ? 'high' : 'auto'}
fetchpriority={app.id === 'videos' ? 'high' : 'auto'}
/>
) : app.id === 'speechsounds' ? (
<img
@ -66,7 +66,7 @@ export function LandingPage() { @@ -66,7 +66,7 @@ export function LandingPage() {
width="80"
height="80"
loading="eager"
fetchPriority="auto"
fetchpriority="auto"
/>
) : app.id === 'tictactoe' ? (
<img
@ -76,7 +76,7 @@ export function LandingPage() { @@ -76,7 +76,7 @@ export function LandingPage() {
width="80"
height="80"
loading="eager"
fetchPriority="auto"
fetchpriority="auto"
/>
) : (
<span className="text-5xl">{emoji}</span>

Loading…
Cancel
Save