```diff
--- test_files/535-original.txt	2025-03-07 19:07:07
+++ test_files/535-modified.txt	2025-03-07 19:07:07
@@ -1,7 +1,6 @@
 ---
 title: "🚀 Quick Start - 3"
 sidebarTitle: "Quick Start - Part 3"
-icon: "rocket"
 description: "Quickstart-3: Learn how to use Triggers with Composio."
 ---
 
@@ -46,13 +45,13 @@
 </Step>
 
 <Step title="Authenticate Gmail Account">
-    We'll use **`Jessica`** as our example user. Choose your method:
+    We'll use **`default`** as our example user. Choose your method:
 
     <Tabs>
         <Tab title="CLI (Quickest)">
             <CodeGroup>
                 ```bash Authenticate Gmail Account
-                composio add gmail -e "Jessica" # Launches Gmail login
+                composio add gmail -e "default" # Launches Gmail login
                 ```
             </CodeGroup>
         </Tab>
@@ -61,7 +60,7 @@
                 ```python Authenticate Gmail Account
                 from composio import ComposioToolSet, App
 
-                toolset = ComposioToolSet(entity_id="Jessica")
+                toolset = ComposioToolSet(entity_id="default")
                 entity = toolset.get_entity()
                 request = entity.initiate_connection(App.GMAIL)
 
@@ -76,8 +75,8 @@
 
                 const client = new Composio(process.env.COMPOSIO_API_KEY);
 
-                const entity = await client.getEntity("Jessica");
-                const connection = await entity.initiateConnection('gmail');
+                const entity = await client.getEntity("default");
+                const connection = await entity.initiateConnection({appName: "gmail"});
 
                 console.log(`Open this URL to authenticate: ${connection.redirectUrl}`);
                 ```
@@ -111,7 +110,7 @@
                 from composio import Composio, Action
 
                 client = Composio()
-                entity = client.get_entity(id="Jessica")
+                entity = client.get_entity(id="default")
 
                 # config is optional, it can be used to pass additional parameters for the trigger
                 entity.enable_trigger(app=App.GMAIL, trigger_name="gmail_new_gmail_message", config={}) # Enable trigger
@@ -171,7 +170,7 @@
     </Tabs>
 </Step>
 
-<Step title="Initialize Composio and OpenAI">
+<Step title="Initialize Composio Toolset and OpenAI">
     Set up your development environment:
 
     <Tabs>
@@ -188,7 +187,7 @@
         </Tab>
         <Tab title="JavaScript">
             <CodeGroup>
-                ```javascript Initialize Composio and OpenAI
+                ```javascript Initialize Composio's OpenAI Toolset and OpenAI
                 import { OpenAI } from "openai";
                 import { OpenAIToolSet } from "composio-core";
 
@@ -275,10 +274,10 @@
             <Card title="Compatible Agentic Frameworks" icon="brain" href="/framework/langchain">
                 Integrate with popular agentic frameworks
             </Card>
-            <Card title="Authorize a User's Account" icon="brain" href="/introduction/foundations/components/entity/entity-guide">
+            <Card title="Authorize a User's Account" icon="brain" href="../../patterns/Auth/connected_account">
                 Authorize a user's account to perform actions and subscribe to triggers
             </Card>
-            <Card title="Execute Actions" icon="wand-magic-sparkles" href="/introduction/foundations/components/actions/action-guide">
+            <Card title="Execute Actions" icon="wand-magic-sparkles" href="../../patterns/tools/what-are-tools  ">
                 Execute actions on behalf of a user
             </Card>
             <Card title="Triggers" icon="bolt" href="/introduction/foundations/components/triggers/trigger-guide">
@@ -286,4 +285,4 @@
             </Card>
         </CardGroup>
     </Card>
-</Frame>
\ No newline at end of file
+</Frame>
```
