feat: randomize greeting from pool on homepage
This commit is contained in:
parent
59674292be
commit
169ef685ce
3 changed files with 33 additions and 4 deletions
15
apps/vdn-static/src/i18n/greeting.ts
Normal file
15
apps/vdn-static/src/i18n/greeting.ts
Normal 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[];
|
||||
Loading…
Add table
Add a link
Reference in a new issue