/** * @file app/(app)/page.tsx * @description Welcome page component displayed as the initial landing screen of the Waveform application. */ import Image from "next/image"; /** * Renders the welcome page featuring the Waveform logo, main heading, and confirmation text. * * @returns {JSX.Element} The rendered welcome page component. */ export default function WelcomePage() { return (
Waveform Logo

Waveform

The basic framework has been successfully set up!

); }