new color scheme?

This commit is contained in:
Milo Schwartz
2024-10-15 23:52:58 -04:00
parent 84e118d1fa
commit b651fabfcd
7 changed files with 80 additions and 54 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>
)}