Skip to content

Commit ed739a1

Browse files
authored
🤖 Remove top bar with title and tips carousel (#149)
Removed the AppHeader component that displayed 'coder multiplexer' title and TipsCarousel. This provides more vertical space for workspace content and simplifies the UI. **Changes:** - Removed TipsCarousel import - Removed AppHeader styled component definition - Removed header JSX from render tree _Generated with `cmux`_
1 parent 2b050ed commit ed739a1

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

src/App.tsx

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import ProjectSidebar from "./components/ProjectSidebar";
1010
import NewWorkspaceModal from "./components/NewWorkspaceModal";
1111
import { AIView } from "./components/AIView";
1212
import { ErrorBoundary } from "./components/ErrorBoundary";
13-
import { TipsCarousel } from "./components/TipsCarousel";
1413
import { usePersistedState, updatePersistedState } from "./hooks/usePersistedState";
1514
import { matchesKeybind, KEYBINDS } from "./utils/ui/keybinds";
1615
import { useProjectManagement } from "./hooks/useProjectManagement";
@@ -109,26 +108,6 @@ const MainContent = styled.div`
109108
overflow: hidden;
110109
`;
111110

112-
const AppHeader = styled.header`
113-
padding: 10px 20px;
114-
background: #2d2d2d;
115-
border-bottom: 1px solid #444;
116-
display: flex;
117-
align-items: center;
118-
gap: 24px;
119-
120-
h1 {
121-
color: #fff;
122-
font-size: 20px;
123-
margin: 0;
124-
font-weight: 600;
125-
letter-spacing: -0.5px;
126-
line-height: 1;
127-
display: flex;
128-
align-items: center;
129-
}
130-
`;
131-
132111
const ContentArea = styled.div`
133112
flex: 1;
134113
display: flex;
@@ -493,10 +472,6 @@ function AppInner() {
493472
onUpdateSecrets={handleUpdateSecrets}
494473
/>
495474
<MainContent>
496-
<AppHeader>
497-
<h1>coder multiplexer</h1>
498-
<TipsCarousel />
499-
</AppHeader>
500475
<ContentArea>
501476
{selectedWorkspace ? (
502477
<ErrorBoundary

0 commit comments

Comments
 (0)