diff --git a/apps/webapp/app/components/ImpersonationBanner.tsx b/apps/webapp/app/components/ImpersonationBanner.tsx
index d4486fc96a..367f31dfd3 100644
--- a/apps/webapp/app/components/ImpersonationBanner.tsx
+++ b/apps/webapp/app/components/ImpersonationBanner.tsx
@@ -1,7 +1,6 @@
+import { UserMinusIcon } from "@heroicons/react/20/solid";
import { Form } from "@remix-run/react";
-import { Paragraph } from "./primitives/Paragraph";
import { Button } from "./primitives/Buttons";
-import { UserMinusIcon } from "@heroicons/react/20/solid";
export function ImpersonationBanner() {
return (
@@ -13,6 +12,7 @@ export function ImpersonationBanner() {
LeadingIcon={UserMinusIcon}
fullWidth
textAlignLeft
+ className="text-amber-400"
>
Stop impersonating
diff --git a/apps/webapp/app/components/SetupCommands.tsx b/apps/webapp/app/components/SetupCommands.tsx
index fc376480a6..c711e6c3df 100644
--- a/apps/webapp/app/components/SetupCommands.tsx
+++ b/apps/webapp/app/components/SetupCommands.tsx
@@ -10,6 +10,7 @@ import {
} from "./primitives/ClientTabs";
import { ClipboardField } from "./primitives/ClipboardField";
import { Paragraph } from "./primitives/Paragraph";
+import { Header3 } from "./primitives/Headers";
type PackageManagerContextType = {
activePackageManager: string;
@@ -61,7 +62,12 @@ function getApiUrlArg() {
return apiUrl ? `-a ${apiUrl}` : undefined;
}
-export function InitCommandV3() {
+// Add title prop to the component interfaces
+type TabsProps = {
+ title?: string;
+};
+
+export function InitCommandV3({ title }: TabsProps) {
const project = useProject();
const projectRef = project.externalRef;
const apiUrlArg = getApiUrlArg();
@@ -77,14 +83,17 @@ export function InitCommandV3() {
value={activePackageManager}
onValueChange={setActivePackageManager}
>
-