diff --git a/ui/public/ostris_logo_black.png b/ui/public/ostris_logo_black.png new file mode 100644 index 00000000..673abbb5 Binary files /dev/null and b/ui/public/ostris_logo_black.png differ diff --git a/ui/src/app/datasets/[datasetName]/page.tsx b/ui/src/app/datasets/[datasetName]/page.tsx index 7d457f59..a3409afb 100644 --- a/ui/src/app/datasets/[datasetName]/page.tsx +++ b/ui/src/app/datasets/[datasetName]/page.tsx @@ -55,27 +55,27 @@ export default function DatasetPage({ params }: { params: { datasetName: string text = 'Loading Images'; subtitle = 'Please wait while we fetch your dataset images...'; showIt = true; - bgColor = 'bg-gray-50 dark:bg-gray-800/50'; - textColor = 'text-gray-900 dark:text-gray-100'; - iconColor = 'text-gray-500 dark:text-gray-400'; + bgColor = 'bg-gray-800/50'; + textColor = 'text-gray-100'; + iconColor = 'text-gray-400'; } if (status == 'error') { icon = ; text = 'Error Loading Images'; subtitle = 'There was a problem fetching the images. Please try refreshing the page.'; showIt = true; - bgColor = 'bg-red-50 dark:bg-red-950/20'; - textColor = 'text-red-900 dark:text-red-100'; - iconColor = 'text-red-600 dark:text-red-400'; + bgColor = 'bg-red-600/20'; + textColor = 'text-red-100'; + iconColor = 'text-red-400'; } if (status == 'success' && imgList.length === 0) { icon = ; text = 'No Images Found'; subtitle = 'This dataset is empty. Click "Add Images" to get started.'; showIt = true; - bgColor = 'bg-gray-50 dark:bg-gray-800/50'; - textColor = 'text-gray-900 dark:text-gray-100'; - iconColor = 'text-gray-500 dark:text-gray-400'; + bgColor = 'bg-gray-800/50'; + textColor = 'text-gray-100'; + iconColor = 'text-gray-400'; } if (!showIt) return null; @@ -106,7 +106,7 @@ export default function DatasetPage({ params }: { params: { datasetName: string
-
@@ -263,7 +260,7 @@ export default function TrainingForm() {
- + New Training Job
diff --git a/ui/src/app/layout.tsx b/ui/src/app/layout.tsx index 1167b5fe..1febc075 100644 --- a/ui/src/app/layout.tsx +++ b/ui/src/app/layout.tsx @@ -25,9 +25,19 @@ export default function RootLayout({ children }: { children: React.ReactNode }) const platform = os.platform(); return ( - + +