Skip to content
Open
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
5 changes: 5 additions & 0 deletions frontend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# OAuth 2.0 Client ID issued by Google Cloud Console
VITE_GOOGLE_CLIENT_ID=

# Base URL of the backend API (e.g., http://localhost:5000 or https://api.example.com)
VITE_API_URL=
2 changes: 1 addition & 1 deletion frontend/src/components/user/common/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Navbar = () => {
return (
<header className="px-0 sm:px-6 py-4 w-full sticky top-0 border-b bg-white dark:bg-black z-20">
<div className="flex justify-end md:justify-between items-center">
<SidebarTrigger className="-translate-x-4 hidden md:block" />
<SidebarTrigger className="-translate-x-4 hidden md:flex items-center justify-center" />
<div className="flex items-center gap-4 mr-2">
<SearchBar />
<ThemeToggle />
Expand Down
Loading