Skip to content

Commit 053afc7

Browse files
committed
fix: deps
1 parent 1d79458 commit 053afc7

File tree

8 files changed

+6178
-6862
lines changed

8 files changed

+6178
-6862
lines changed

frontend/app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { siteConfig } from "@/config/site";
44
import { fontSans } from "@/config/fonts";
55
import { Providers } from "./providers";
66
import { Navbar } from "@/components/navbar";
7-
import { Link } from "@nextui-org/link";
7+
import { Link } from "@nextui-org/react";
88
import clsx from "clsx";
99

1010

frontend/app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { useState } from "react";
4-
import { Code } from "@nextui-org/code"
4+
import { Code } from "@nextui-org/react"
55
import { title, subtitle } from "@/components/primitives";
66
import { useEffect } from "react";
77
import { Skeleton } from "@nextui-org/react";

frontend/app/providers.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import * as React from "react";
4-
import { NextUIProvider } from "@nextui-org/system";
4+
import { NextUIProvider } from "@nextui-org/react";
55
import { useRouter } from 'next/navigation'
66
import { ThemeProvider as NextThemesProvider } from "next-themes";
77
import { ThemeProviderProps } from "next-themes/dist/types";

frontend/bun.lockb

-478 KB
Binary file not shown.

frontend/components/navbar.tsx

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@ import {
77
NavbarBrand,
88
NavbarItem,
99
NavbarMenuItem,
10-
} from "@nextui-org/navbar";
11-
import { Button } from "@nextui-org/button";
12-
import { Kbd } from "@nextui-org/kbd";
13-
import { Link } from "@nextui-org/link";
14-
import { Input } from "@nextui-org/input";
10+
} from "@nextui-org/react";
11+
import { Link } from "@nextui-org/react";
1512
import { Avatar } from "@nextui-org/react";
1613

17-
import { link as linkStyles } from "@nextui-org/theme";
14+
import { link as linkStyles } from "@nextui-org/react";
1815

1916
import { siteConfig } from "@/config/site";
2017
import NextLink from "next/link";
@@ -24,8 +21,6 @@ import { ThemeSwitch } from "@/components/theme-switch";
2421
import {
2522
TwitterIcon,
2623
GithubIcon,
27-
HeartFilledIcon,
28-
SearchIcon,
2924
} from "@/components/icons";
3025

3126
export const Navbar = () => {

frontend/components/theme-switch.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { FC } from "react";
44
import { VisuallyHidden } from "@react-aria/visually-hidden";
5-
import { SwitchProps, useSwitch } from "@nextui-org/switch";
5+
import { SwitchProps, useSwitch } from "@nextui-org/react";
66
import { useTheme } from "next-themes";
77
import {useIsSSR} from "@react-aria/ssr";
88
import clsx from "clsx";

0 commit comments

Comments
 (0)