Skip to content

Commit

Permalink
fix: wording fix (#285)
Browse files Browse the repository at this point in the history
* changing the text "realtime" to "real-time" to keep the consistency.
  • Loading branch information
cyfyifanchen authored Sep 22, 2024
1 parent cc15f15 commit 15b74e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playground/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './global.css'


export const metadata: Metadata = {
title: "TEN Agent",
title: "TEN Agent | Real-Time Multimodal AI Agent",
description: "TEN Agent is an open-source multimodal AI agent that can speak, see, and access a knowledge base(RAG).",
appleWebApp: {
capable: true,
Expand Down
2 changes: 1 addition & 1 deletion playground/src/components/loginCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const LoginCard = () => {
<div className={styles.title}>
{/* <LogoIcon transform="scale(1.5 1.5)"></LogoIcon> */}
<span className={styles.title} >TEN Agent</span>
<span className={styles.text}>A realtime multimodal AI agent powered by <a href="https://theten.ai" >TEN</a></span>
<span className={styles.text}>A Real-Time Multimodal AI Agent Powered by <a href="https://theten.ai" >TEN</a></span>
</div>
<div className={styles.section}>
<input placeholder="User Name" value={userName} onChange={onUserNameChange} ></input>
Expand Down
2 changes: 1 addition & 1 deletion playground/src/platform/pc/description/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Description = () => {

return <div className={styles.description}>
<span className={styles.title}>Description</span>
<span className={styles.text}>TEN Agent is a multimodal AI agent that can speak, see, and access a knowledge base.</span>
<span className={styles.text}>TEN Agent is a real-time multimodal AI agent that can speak, see, and access a knowledge base.</span>
<span className={`${styles.btnConnect} ${agentConnected ? styles.disconnect : ''}`} onClick={onClickConnect}>
<span className={`${styles.btnText} ${agentConnected ? styles.disconnect : ''}`}>
{!agentConnected ? "Connect" : "Disconnect"}
Expand Down

0 comments on commit 15b74e8

Please sign in to comment.