# Newsletter confirmed — Thank you for subscribing to TagSpaces!

> You have successfully subscribed to the TagSpaces newsletter — stay tuned for product updates, new release announcements, and news from the TagSpaces team.

export default function ThankYouPage() {
  return (
    <>
    <Box
      sx={{
        minHeight: '70vh',
        display: 'flex',
        flexDirection: 'column',
        justifyContent: 'center',
        alignItems: 'center',
        textAlign: 'center',
        padding: 4,
      }}
    >
      <Typography variant="h4" gutterBottom>
        🎉 Thank you for subscribing!
      </Typography>

      <Typography variant="body1" color="text.secondary" mb={3}>
        You have successfully joined our newsletter. Stay tuned for updates, releases, and news from TagSpaces.
      </Typography>

      <Button
        class="button  button--primary"
        variant="contained"
        color="primary"
        href="/"
      >
        Back to Home
      </Button>
    </Box>
  </>
  );
}
