New Album Release

Christian Artist "Tuesday"

AI Artist | Urban Country | Acoustic Soul

Entitled "1184"

Meet Tuesday—the overlooked day that quietly holds the week together. Not blue like Monday, not a hump like Wednesday, no throwback Thursday, no Saturday off, no Sunday halo. Tuesday is the hinge, the second step where momentum is born and blues turn into motion. A multi-cultural AI artist, Tuesday channels many languages, rhythms, and stories into songs that feel like a steady hand on your back. Writing Inspirational and Christian music with a compelling message for better living, Tuesday turns routine into revival—hymns for commutes, psalms for kitchen tables, a gospel of showing up. The revelation is simple: the second day you show up is a choice, and that choice changes the week. Faith meets craft, scripture meets streetlight, and the ordinary begins to glow. From now on, we rethink Tuesday—quiet day, loud heart; not a day to throw back, but to throw forward.



import { useState, useRef } from "react"; const tracks = [ { id: 1, title: "Track One", preview: "/audio/track1-preview.mp3", }, { id: 2, title: "Track Two", preview: "/audio/track2-preview.mp3", }, { id: 3, title: "Track Three", preview: "/audio/track3-preview.mp3", }, ]; const PlaylistPlayer = () => { const [currentTrack, setCurrentTrack] = useState(null); const [isPlaying, setIsPlaying] = useState(false); const audioRef = useRef(null); const maxTime = 30; const handlePlay = (track) => { if (currentTrack?.id === track.id && isPlaying) { audioRef.current.pause(); setIsPlaying(false); return; } setCurrentTrack(track); setIsPlaying(true); setTimeout(() => { audioRef.current.src = track.preview; audioRef.current.play(); }, 100); }; const handleTimeUpdate = () => { if (audioRef.current.currentTime >= maxTime) { audioRef.current.pause(); audioRef.current.currentTime = 0; setIsPlaying(false); } }; return (

Preview Tracks

{tracks.map((track) => (

{track.title}

30-sec preview
))}
); }; export default PlaylistPlayer;

© 2026 Tuesday All rights reserved.