backsplash-app
Version:
An AI powered wallpaper app.
33 lines (30 loc) • 914 B
text/typescript
export type WallpaperMode = "RandomStyleSelection" | "CustomStyle" | "Location" | "Mood";
export interface WallpaperModeUIData {
id: WallpaperMode;
label: string;
description: string;
// Note: Icon and other UI-specific properties are in wallpaperModes.tsx
}
export const AVAILABLE_MODES_DATA: readonly WallpaperModeUIData[] = [
{
id: "RandomStyleSelection",
label: "Random Styles",
description: "Randomly selects from your active styles.",
},
{
id: "CustomStyle",
label: "Custom Style",
description: "Uses your custom-defined style prompt.",
},
{
id: "Location",
label: "Location Based",
description: "Generates wallpaper based on your current location and time.",
},
{
id: "Mood",
label: "Mood Based",
description: "Generates wallpaper based on a selected mood.",
},
// Add other modes here as needed, without their React components
];