Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mention lfc being in beta phase #2

Merged
merged 1 commit into from
Jan 8, 2024
Merged
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
3 changes: 2 additions & 1 deletion src/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Button } from 'primereact/button';
import { InputText } from 'primereact/inputtext';
import { Chip } from 'primereact/chip';
import { FC, useContext, useState } from 'react';
import { StoreContext } from './StoreContext';
import { useAuth } from './useAuth';
Expand Down Expand Up @@ -30,7 +31,7 @@ export const Navbar: FC<NavbarProps> = () => {
<div className="font-bold min-w-full flex shadow-md z-20 border-red-300 justify-between px-3 py-2">
<div className="flex flex-1 gap-2">
<img src="/logo.png" width={50} height="auto" alt="LFC's logo" />
<span className="text-xl p-2">Looking For Contributors</span>
<span className="text-xl p-2">LFC <Chip label='beta' className='h-6' data-pr-tooltip='Currently in development'/> </span>
</div>
<div className="flex-1 flex justify-center">
<span className="p-input-icon-left">
Expand Down