mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
chore(site): favicon change
This commit is contained in:
parent
155a65cb20
commit
975bbd949c
3 changed files with 7 additions and 26 deletions
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 818 B |
|
|
@ -18,6 +18,7 @@ import SessionSidebar from "./components/SessionSidebar";
|
|||
import type { RequestLog } from "./types/requestLog";
|
||||
import { buildCurl } from "./utils/http";
|
||||
|
||||
const logoUrl = `${import.meta.env.BASE_URL}logos/sandboxagent.svg`;
|
||||
const defaultAgents = ["claude", "codex", "opencode", "amp", "mock"];
|
||||
|
||||
type ItemEventData = {
|
||||
|
|
@ -887,7 +888,7 @@ export default function App() {
|
|||
<div className="app">
|
||||
<header className="header">
|
||||
<div className="header-left">
|
||||
<img src="/logos/sandboxagent.svg" alt="Sandbox Agent" className="logo-text" style={{ height: '20px', width: 'auto' }} />
|
||||
<img src={logoUrl} alt="Sandbox Agent" className="logo-text" style={{ height: '20px', width: 'auto' }} />
|
||||
</div>
|
||||
<div className="header-right">
|
||||
<a className="button ghost small" href={issueTrackerUrl} target="_blank" rel="noreferrer">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
import { AlertTriangle, Zap } from "lucide-react";
|
||||
import { isHttpsToHttpConnection, isLocalNetworkTarget } from "../lib/permissions";
|
||||
|
||||
const logoUrl = `${import.meta.env.BASE_URL}logos/sandboxagent.svg`;
|
||||
|
||||
const ConnectScreen = ({
|
||||
endpoint,
|
||||
token,
|
||||
|
|
@ -24,7 +26,7 @@ const ConnectScreen = ({
|
|||
<div className="app">
|
||||
<header className="header">
|
||||
<div className="header-left">
|
||||
<img src="/logos/sandboxagent.svg" alt="Sandbox Agent" className="logo-text" style={{ height: '20px', width: 'auto' }} />
|
||||
<img src={logoUrl} alt="Sandbox Agent" className="logo-text" style={{ height: '20px', width: 'auto' }} />
|
||||
</div>
|
||||
{reportUrl && (
|
||||
<div className="header-right">
|
||||
|
|
@ -38,7 +40,7 @@ const ConnectScreen = ({
|
|||
<main className="landing">
|
||||
<div className="landing-container">
|
||||
<div className="landing-hero">
|
||||
<img src="/logos/sandboxagent.svg" alt="Sandbox Agent" style={{ height: '32px', width: 'auto', marginBottom: '20px' }} />
|
||||
<img src={logoUrl} alt="Sandbox Agent" style={{ height: '32px', width: 'auto', marginBottom: '20px' }} />
|
||||
</div>
|
||||
|
||||
<div className="connect-card">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue