Skip to content

Commit 2af667a

Browse files
Fix invalid export in Team page and replace img tags
1 parent 9928994 commit 2af667a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

app/Team/page.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const Team = () => {
3434
{/* Mobile Header with Generations Dropdown */}
3535
<div className="md:hidden sticky top-0 z-50 bg-white dark:bg-neutral-900 shadow-sm">
3636
<div className="flex justify-between items-center p-4">
37-
<Logo />
37+
{/* <Logo /> */}
3838
<Dialog>
3939
<DialogTrigger asChild>
4040
<Button variant="outline" size="icon">
@@ -67,7 +67,7 @@ const Team = () => {
6767
<div className="flex flex-1">
6868
{/* Desktop Sidebar */}
6969
<div className="hidden md:flex w-64 bg-white dark:bg-neutral-900 p-6 flex-col border-r dark:border-neutral-700">
70-
<Logo />
70+
{/* <Logo /> */}
7171
<div className="mt-8 space-y-2">
7272
{Gen.map((gen) => (
7373
<Button
@@ -179,11 +179,11 @@ const Team = () => {
179179
);
180180
}
181181

182-
export const Logo = () => (
183-
<Link href="#" className="flex space-x-2 items-center text-lg font-bold text-black dark:text-white">
184-
<div className="h-6 w-7 bg-black dark:bg-white rounded-lg" />
185-
<span className="whitespace-pre">Coding Junction</span>
186-
</Link>
187-
);
182+
// export const Logo = () => (
183+
// <Link href="#" className="flex space-x-2 items-center text-lg font-bold text-black dark:text-white">
184+
// <div className="h-6 w-7 bg-black dark:bg-white rounded-lg" />
185+
// <span className="whitespace-pre">Coding Junction</span>
186+
// </Link>
187+
// );
188188

189189
export default Team;

0 commit comments

Comments
 (0)