feat: randomize greeting from pool on homepage

This commit is contained in:
Benjamin Singleton 2026-02-09 21:23:28 -06:00 committed by Sheldon Cooper
parent 59674292be
commit 169ef685ce
3 changed files with 33 additions and 4 deletions

View file

@ -0,0 +1,15 @@
export interface Greeting {
title: string;
subtitle: string;
}
export const GREETINGS = [
{
title: "BRÅTULA VIOSSA.NET MÅDE",
subtitle: "Hadjiplas per lera para Viossa glossa fu vi",
},
{
title: "akka po viossa.net!",
subtitle: "kenomasufobo o gen wi tropos o viosox",
},
] as const satisfies Greeting[];