Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added frontend/public/GenerateNU Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
:root {
--background: #ffffff;
--foreground: #171717;
--text-default: #111111;
}

@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-brand-blue: #1477f8;
--color-brand-white: #ffffff;
--color-text-default: var(--text-default);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
Expand Down
15 changes: 10 additions & 5 deletions frontend/src/components/nav/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client'

import Image from 'next/image'
import {
LayoutDashboard,
Users,
Expand Down Expand Up @@ -87,11 +88,15 @@ export default function Sidebar({ roles, firstName, lastName }: SidebarProps) {
return (
<aside className="flex h-screen w-60 flex-col border-r border-gray-100 bg-white">
{/* Logo */}
<div className="flex h-11 items-center gap-2 border-b border-gray-100 px-4">
<div className="bg-brand-blue flex h-7 w-7 items-center justify-center rounded-md">
<span className="text-xs font-bold text-white">G</span>
</div>
<span className="text-sm font-semibold text-gray-900">Generate</span>
<div className="flex h-14 items-center gap-2 border-b border-gray-100 px-5">
<Image
src="/GenerateNU Logo.png"
alt="GenerateNU"
width={28}
height={28}
className="object-contain"
/>
<span className="text-brand-blue text-xl font-semibold">Generate</span>
</div>

{/* Nav sections */}
Expand Down
Loading