import { component$ } from "@builder.io/qwik"; import { GameCard, HomeNavBar, Card } from "@nestri/ui"; function getGreeting(): string { const hour = new Date().getHours(); if (hour < 12) return "Good Morning"; if (hour < 18) return "Good Afternoon"; return "Good Evening"; } export default component$(() => { return ( <>

{getGreeting()}, Wanjohi

What will you play today?

{/* */}
) })