Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TTV] Fix text #80

Merged
merged 1 commit into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function FooterNav({className}: {className?: string}) {
className={cn("w-full flex items-center justify-center py-4 px-8 gap-x-2 text-sm text-gray-600", className)}>
<div className={"sm:flex gap-x-2 justify-center items-center hidden"}>
<Link href={"https://elevenlabs.io/docs/api-reference/ttv-create-previews"} target={"_blank"}>
Voice Designer API
Voice Design API
</Link>
<span>|</span>
<Link href={"https://elevenlabs.io/docs/api-reference/text-to-speech"} target={"_blank"}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function XIcon({ className }: { className: string }) {
}

export function ShareOnXButton() {
const shareText = "This is what I would sound like based on my X posts using the @elevenlabsio Voice Designer\n\nTry it yourself on xtovoice.com\n\n#xtovoice\n\n"
const shareText = "This is what I would sound like based on my X posts using the @elevenlabsio Voice Design\n\nTry it yourself on xtovoice.com\n\n#xtovoice\n\n"
function share() {
const url = window.location.href;
window.open(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export async function SpecimenCard({ humanSpecimen }: { humanSpecimen: HumanSpec
<blockquote className="border-l-2 pl-3 text-sm text-gray-700 leading-relaxed italic">
This fully open-source project shows what can be built with the new <Link
href={"https://elevenlabs.io/docs/api-reference/ttv-create-previews"} className={"font-semibold"}
target={"_blank"}>ElevenLabs Voice Designer API</Link>. We use the data from the X/Twitter profile to
target={"_blank"}>ElevenLabs Voice Design API</Link>. We use the data from the X/Twitter profile to
create a prompt for what the voice might sound like. We then create the voice using the <Link
href={"https://elevenlabs.io/docs/api-reference/ttv-create-previews"} className={"underline"}
target={"_blank"}>ElevenLabs Voice Design API</Link> and the video using the <Link
Expand Down
Loading