top of page
entry+grey+iso_edited_edited.jpg
copywriting cove logo

Hey there.

   Looks like you may have some questions...

email newsletter

          Why do I need a copywriter?

why spend my money when I can do it myself 

what exactly is a copywriter? 

What is your pricing model: hourly, per-project, or a monthly retainer?

What's off the table for you as a copywriter? In simpler terms, what tasks or projects do you say no to?

what industry do you specialize in 

How do you ensure that your copy is tailored to my brand's voice and tone?

Your question isn't here?

no problem, just head over to  

and ask.

bottom of page
import React, { useState } from 'react'; const difficulties = ['Easy', 'Medium', 'Hard', 'Expert', 'Master']; const styles = ['Friendly', 'Neutral', 'Challenging', 'Aggressive', 'Passive']; const App = () => { const [difficulty, setDifficulty] = useState(difficulties[0]); const [style, setStyle] = useState(styles[0]); const [scenario, setScenario] = useState(''); const [conversation, setConversation] = useState([]); const [progress, setProgress] = useState(0); const handleStartCall = () => { setConversation([]); setProgress(0); const greeting = `Hello, I'm your ${style} client. How can you help me today?`; setConversation((prevConversation) => [...prevConversation, { text: greeting, isAI: true }]); }; const handleUserInput = (event) => { event.preventDefault(); const userInput = event.target.elements.userInput.value; setConversation((prevConversation) => [...prevConversation, { text: userInput, isAI: false }]); event.target.elements.userInput.value = ''; setProgress((prevProgress) => Math.min(prevProgress + 10, 100)); const response = `This is a sample response from the AI. Difficulty: ${difficulty}, Style: ${style}`; setConversation((prevConversation) => [...prevConversation, { text: response, isAI: true }]); }; return (

Sales Training AI