mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-03 17:26:38 +00:00
new color scheme?
This commit is contained in:
@@ -87,13 +87,13 @@ export default function Header({ email, orgName, name }: HeaderProps) {
|
||||
<div className="flex items-center gap-4 mr-4">
|
||||
<Link
|
||||
href="/docs"
|
||||
className="text-muted-foreground hover:text-black"
|
||||
className="text-muted-foreground hover:text-foreground"
|
||||
>
|
||||
Documentation
|
||||
</Link>
|
||||
<Link
|
||||
href="/support"
|
||||
className="text-muted-foreground hover:text-black"
|
||||
className="text-muted-foreground hover:text-foreground"
|
||||
>
|
||||
Support
|
||||
</Link>
|
||||
|
||||
@@ -15,22 +15,22 @@ const topNavItems = [
|
||||
{
|
||||
title: "Sites",
|
||||
href: "/{orgId}/sites",
|
||||
icon: <Combine />,
|
||||
icon: <Combine className="h-5 w-5"/>,
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
href: "/{orgId}/resources",
|
||||
icon: <Waypoints />,
|
||||
icon: <Waypoints className="h-5 w-5"/>,
|
||||
},
|
||||
{
|
||||
title: "Users",
|
||||
href: "/{orgId}/users",
|
||||
icon: <Users />,
|
||||
icon: <Users className="h-5 w-5"/>,
|
||||
},
|
||||
{
|
||||
title: "General",
|
||||
href: "/{orgId}/general",
|
||||
icon: <Cog />,
|
||||
icon: <Cog className="h-5 w-5"/>,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -53,8 +53,8 @@ export default async function ConfigurationLaytout({
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="w-full bg-muted border-b border-bg mb-6 select-none sm:px-0 px-3 pt-3">
|
||||
<div className="container mx-auto flex flex-col content-between gap-4">
|
||||
<div className="w-full bg-muted mb-6 select-none sm:px-0 px-3 pt-3 border-b border-border">
|
||||
<div className="container mx-auto flex flex-col content-between gap-4 ">
|
||||
<Header email={user.email} orgName={params.orgId} />
|
||||
<TopbarNav items={topNavItems} orgId={params.orgId} />
|
||||
</div>
|
||||
|
||||
@@ -82,10 +82,6 @@ export default async function SettingsLayout({
|
||||
href={`/${params.orgId}/sites`}
|
||||
className="text-primary font-medium"
|
||||
>
|
||||
<div className="flex items-center gap-0.5 hover:underline">
|
||||
<ChevronLeft />
|
||||
<span>View all sites</span>
|
||||
</div>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -125,7 +125,7 @@ export function DataTable<TData, TValue>({
|
||||
colSpan={columns.length}
|
||||
className="h-24 text-center"
|
||||
>
|
||||
No results.
|
||||
No sites. Create one to get started.
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user