Skip to content

Commit 6a5aaf6

Browse files
committed
Rename ObjectQL references to ObjectOS
Updated all user-facing references from 'ObjectQL' to 'ObjectOS' across the web app and documentation for consistency with the new branding.
1 parent 3ce2429 commit 6a5aaf6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

apps/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>ObjectQL</title>
7+
<title>ObjectOS</title>
88
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
99
</head>
1010
<body>

apps/web/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function AppContent() {
9494
<div className="flex flex-col min-h-screen w-full bg-background">
9595
<header className="flex h-16 shrink-0 items-center gap-4 border-b px-6 bg-card sticky top-0 z-50">
9696
<div className="flex items-center gap-2 font-bold text-lg">
97-
<span>ObjectQL</span>
97+
<span>ObjectOS</span>
9898
</div>
9999
<div className="ml-auto flex items-center gap-2">
100100
{/* User Menu */}

apps/web/src/components/app-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export function AppSidebar({ objects, appMetadata, ...props }: React.ComponentPr
139139
<LucideIcons.Database className="size-4" />
140140
</div>
141141
<div className="grid flex-1 text-left text-sm leading-tight">
142-
<span className="truncate font-semibold">{appMetadata?.label || 'ObjectQL'}</span>
142+
<span className="truncate font-semibold">{appMetadata?.label || 'ObjectOS'}</span>
143143
</div>
144144
</SidebarMenuButton>
145145
</SidebarMenuItem>

apps/web/src/components/dashboard/SettingsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function SettingsView({ objectCount = 0 }: SettingsViewProps) {
2323
</div>
2424
<Card>
2525
<CardHeader>
26-
<CardTitle>About ObjectQL</CardTitle>
26+
<CardTitle>About ObjectOS</CardTitle>
2727
<CardDescription>System information and status.</CardDescription>
2828
</CardHeader>
2929
<CardContent className="space-y-4">

apps/web/src/pages/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function Login() {
4646
{isSignIn ? 'Welcome back' : 'Create account'}
4747
</h1>
4848
<p className="text-muted-foreground text-sm mt-2">
49-
{isSignIn ? 'Enter your details to access your workspace' : 'Start your journey with ObjectQL'}
49+
{isSignIn ? 'Enter your details to access your workspace' : 'Start your journey with ObjectOS'}
5050
</p>
5151
</div>
5252

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from 'vitepress'
22

33
export default defineConfig({
4-
title: "ObjectQL",
4+
title: "ObjectOS",
55
description: "A Unified Data Management Framework",
66

77
// Scans the docs directory
@@ -62,7 +62,7 @@ export default defineConfig({
6262

6363
footer: {
6464
message: 'Released under the MIT License.',
65-
copyright: 'Copyright © 2026 ObjectQL'
65+
copyright: 'Copyright © 2026 ObjectOS'
6666
}
6767
}
6868
})

0 commit comments

Comments
 (0)