adds
This commit is contained in:
parent
3473fc2c4f
commit
ad610fa866
|
|
@ -0,0 +1 @@
|
||||||
|
public-hoist-pattern[]=*@nextui-org/*
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
// 'use client'
|
|
||||||
|
|
||||||
// import { Button } from "@nextui-org/button"
|
|
||||||
|
|
||||||
// import { Box } from '@chakra-ui/react'
|
|
||||||
|
|
||||||
// export default function About() {
|
|
||||||
// return (
|
|
||||||
// <Box color={"black"}>
|
|
||||||
// About
|
|
||||||
// The stuff is here
|
|
||||||
// <Box bg='tomato' w='100%' p={4} color='white'>
|
|
||||||
// This is the Box
|
|
||||||
// </Box>
|
|
||||||
// </Box>
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
|
|
||||||
import { Container, Row, Col, Button } from 'react-bootstrap'
|
import { Container, Row, Col, Button } from 'react-bootstrap'
|
||||||
|
|
||||||
export default function MyPage() {
|
export default function MyPage() {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
import { Providers } from './next-providers'
|
|
||||||
import { fonts } from './fonts'
|
import { fonts } from './fonts'
|
||||||
import { Inter } from 'next/font/google'
|
import { Inter } from 'next/font/google'
|
||||||
import 'bootstrap/dist/css/bootstrap.min.css'
|
import 'bootstrap/dist/css/bootstrap.min.css'
|
||||||
|
// import './tailwind.css'
|
||||||
|
// import { Providers } from './next-provider'
|
||||||
|
|
||||||
const inter = Inter({ subsets: ['latin'] })
|
const inter = Inter({ subsets: ['latin'] })
|
||||||
|
|
||||||
|
|
@ -13,7 +14,7 @@ export default function RootLayout({
|
||||||
return (
|
return (
|
||||||
<html lang='en' className={fonts.rubik.variable}>
|
<html lang='en' className={fonts.rubik.variable}>
|
||||||
<body>
|
<body>
|
||||||
<Providers>{children}</Providers>
|
{children}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// app/providers.tsx
|
// app/providers.tsx
|
||||||
'use client'
|
// 'use client'
|
||||||
|
|
||||||
import { NextUIProvider } from '@nextui-org/react'
|
import { NextUIProvider } from '@nextui-org/react'
|
||||||
|
|
||||||
|
|
@ -9,4 +9,4 @@ export function Providers({ children }: { children: React.ReactNode }) {
|
||||||
{children}
|
{children}
|
||||||
</NextUIProvider>
|
</NextUIProvider>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -1,32 +1,13 @@
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { Button } from '@nextui-org/button'
|
import { Button } from '@nextui-org/button'
|
||||||
|
import { Nav, Stack } from "react-bootstrap"
|
||||||
// 'use client'
|
import 'bootstrap/dist/css/bootstrap.min.css'
|
||||||
|
import { Navbar, NavbarBrand, NavbarContent, NavbarItem } from "@nextui-org/react"
|
||||||
// import { Link } from '@chakra-ui/next-js'
|
import Link from "next/link"
|
||||||
// import { Box, Flex } from '@chakra-ui/react'
|
|
||||||
|
|
||||||
// export default function Page() {
|
|
||||||
// return (
|
|
||||||
// <Flex>
|
|
||||||
// <h1>Home</h1>
|
|
||||||
|
|
||||||
// <Box>
|
|
||||||
// Flex
|
|
||||||
// </Box>
|
|
||||||
|
|
||||||
// <Link href='/about' color='blue.400' _hover={{ color: 'blue.500' }}>
|
|
||||||
// About
|
|
||||||
// </Link>
|
|
||||||
// </Flex>
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
|
|
||||||
// app/page.tsx
|
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-4 items-center" style={{padding: 4}}>
|
<div className="flex gap-4 items-center" style={{ padding: 4 }}>
|
||||||
<Button color="primary" size="lg">Click me 2</Button>
|
<Button color="primary" size="lg">Click me 2</Button>
|
||||||
<Button size="md">
|
<Button size="md">
|
||||||
Medium
|
Medium
|
||||||
|
|
@ -34,6 +15,25 @@ export default function Page() {
|
||||||
<Button size="lg">
|
<Button size="lg">
|
||||||
Large
|
Large
|
||||||
</Button>
|
</Button>
|
||||||
|
<Stack direction="horizontal" gap={3}>
|
||||||
|
<div className="p-2">First item</div>
|
||||||
|
<div className="p-2">Second item</div>
|
||||||
|
<div className="p-2">Third item</div>
|
||||||
|
</Stack>
|
||||||
|
<ul className="nav flex-column">
|
||||||
|
<li className="nav-item">
|
||||||
|
<a className="nav-link active" href="/x">Active</a>
|
||||||
|
</li>
|
||||||
|
<li className="nav-item">
|
||||||
|
<a className="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li className="nav-item">
|
||||||
|
<a className="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li className="nav-item">
|
||||||
|
<a className="nav-link disabled" href="#">Disabled</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,800 @@
|
||||||
|
/*
|
||||||
|
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
||||||
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
||||||
|
*/
|
||||||
|
|
||||||
|
*,
|
||||||
|
::before,
|
||||||
|
::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
/* 1 */
|
||||||
|
border-width: 0;
|
||||||
|
/* 2 */
|
||||||
|
border-style: solid;
|
||||||
|
/* 2 */
|
||||||
|
border-color: #e5e7eb;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
::before,
|
||||||
|
::after {
|
||||||
|
--tw-content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Use a consistent sensible line-height in all browsers.
|
||||||
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
||||||
|
3. Use a more readable tab size.
|
||||||
|
4. Use the user's configured `sans` font-family by default.
|
||||||
|
5. Use the user's configured `sans` font-feature-settings by default.
|
||||||
|
6. Use the user's configured `sans` font-variation-settings by default.
|
||||||
|
7. Disable tap highlights on iOS
|
||||||
|
*/
|
||||||
|
|
||||||
|
html,
|
||||||
|
:host {
|
||||||
|
line-height: 1.5;
|
||||||
|
/* 1 */
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
/* 2 */
|
||||||
|
-moz-tab-size: 4;
|
||||||
|
/* 3 */
|
||||||
|
-o-tab-size: 4;
|
||||||
|
tab-size: 4;
|
||||||
|
/* 3 */
|
||||||
|
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
/* 4 */
|
||||||
|
font-feature-settings: normal;
|
||||||
|
/* 5 */
|
||||||
|
font-variation-settings: normal;
|
||||||
|
/* 6 */
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
/* 7 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Remove the margin in all browsers.
|
||||||
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
/* 1 */
|
||||||
|
line-height: inherit;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Add the correct height in Firefox.
|
||||||
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
||||||
|
3. Ensure horizontal rules are visible by default.
|
||||||
|
*/
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: 0;
|
||||||
|
/* 1 */
|
||||||
|
color: inherit;
|
||||||
|
/* 2 */
|
||||||
|
border-top-width: 1px;
|
||||||
|
/* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
abbr:where([title]) {
|
||||||
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Remove the default font size and weight for headings.
|
||||||
|
*/
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-size: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Reset links to optimize for opt-in styling instead of opt-out.
|
||||||
|
*/
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Add the correct font weight in Edge and Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Use the user's configured `mono` font-family by default.
|
||||||
|
2. Use the user's configured `mono` font-feature-settings by default.
|
||||||
|
3. Use the user's configured `mono` font-variation-settings by default.
|
||||||
|
4. Correct the odd `em` font sizing in all browsers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
code,
|
||||||
|
kbd,
|
||||||
|
samp,
|
||||||
|
pre {
|
||||||
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
/* 1 */
|
||||||
|
font-feature-settings: normal;
|
||||||
|
/* 2 */
|
||||||
|
font-variation-settings: normal;
|
||||||
|
/* 3 */
|
||||||
|
font-size: 1em;
|
||||||
|
/* 4 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Add the correct font size in all browsers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
sub,
|
||||||
|
sup {
|
||||||
|
font-size: 75%;
|
||||||
|
line-height: 0;
|
||||||
|
position: relative;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
||||||
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
||||||
|
3. Remove gaps between table borders by default.
|
||||||
|
*/
|
||||||
|
|
||||||
|
table {
|
||||||
|
text-indent: 0;
|
||||||
|
/* 1 */
|
||||||
|
border-color: inherit;
|
||||||
|
/* 2 */
|
||||||
|
border-collapse: collapse;
|
||||||
|
/* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Change the font styles in all browsers.
|
||||||
|
2. Remove the margin in Firefox and Safari.
|
||||||
|
3. Remove default padding in all browsers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
button,
|
||||||
|
input,
|
||||||
|
optgroup,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
|
font-family: inherit;
|
||||||
|
/* 1 */
|
||||||
|
font-feature-settings: inherit;
|
||||||
|
/* 1 */
|
||||||
|
font-variation-settings: inherit;
|
||||||
|
/* 1 */
|
||||||
|
font-size: 100%;
|
||||||
|
/* 1 */
|
||||||
|
font-weight: inherit;
|
||||||
|
/* 1 */
|
||||||
|
line-height: inherit;
|
||||||
|
/* 1 */
|
||||||
|
letter-spacing: inherit;
|
||||||
|
/* 1 */
|
||||||
|
color: inherit;
|
||||||
|
/* 1 */
|
||||||
|
margin: 0;
|
||||||
|
/* 2 */
|
||||||
|
padding: 0;
|
||||||
|
/* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Remove the inheritance of text transform in Edge and Firefox.
|
||||||
|
*/
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Correct the inability to style clickable types in iOS and Safari.
|
||||||
|
2. Remove default button styles.
|
||||||
|
*/
|
||||||
|
|
||||||
|
button,
|
||||||
|
input:where([type='button']),
|
||||||
|
input:where([type='reset']),
|
||||||
|
input:where([type='submit']) {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
/* 1 */
|
||||||
|
background-color: transparent;
|
||||||
|
/* 2 */
|
||||||
|
background-image: none;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Use the modern Firefox focus style for all focusable elements.
|
||||||
|
*/
|
||||||
|
|
||||||
|
:-moz-focusring {
|
||||||
|
outline: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
||||||
|
*/
|
||||||
|
|
||||||
|
:-moz-ui-invalid {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Add the correct vertical alignment in Chrome and Firefox.
|
||||||
|
*/
|
||||||
|
|
||||||
|
progress {
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Correct the cursor style of increment and decrement buttons in Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
::-webkit-inner-spin-button,
|
||||||
|
::-webkit-outer-spin-button {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Correct the odd appearance in Chrome and Safari.
|
||||||
|
2. Correct the outline style in Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
[type='search'] {
|
||||||
|
-webkit-appearance: textfield;
|
||||||
|
/* 1 */
|
||||||
|
outline-offset: -2px;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Remove the inner padding in Chrome and Safari on macOS.
|
||||||
|
*/
|
||||||
|
|
||||||
|
::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Correct the inability to style clickable types in iOS and Safari.
|
||||||
|
2. Change font properties to `inherit` in Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
::-webkit-file-upload-button {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
/* 1 */
|
||||||
|
font: inherit;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Add the correct display in Chrome and Safari.
|
||||||
|
*/
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Removes the default spacing and border for appropriate elements.
|
||||||
|
*/
|
||||||
|
|
||||||
|
blockquote,
|
||||||
|
dl,
|
||||||
|
dd,
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
hr,
|
||||||
|
figure,
|
||||||
|
p,
|
||||||
|
pre {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
menu {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Reset default styling for dialogs.
|
||||||
|
*/
|
||||||
|
|
||||||
|
dialog {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Prevent resizing textareas horizontally by default.
|
||||||
|
*/
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
||||||
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
||||||
|
*/
|
||||||
|
|
||||||
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
||||||
|
opacity: 1;
|
||||||
|
/* 1 */
|
||||||
|
color: #9ca3af;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
input::placeholder,
|
||||||
|
textarea::placeholder {
|
||||||
|
opacity: 1;
|
||||||
|
/* 1 */
|
||||||
|
color: #9ca3af;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Set the default cursor for buttons.
|
||||||
|
*/
|
||||||
|
|
||||||
|
button,
|
||||||
|
[role="button"] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Make sure disabled buttons don't get the pointer cursor.
|
||||||
|
*/
|
||||||
|
|
||||||
|
:disabled {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
||||||
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
||||||
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
||||||
|
*/
|
||||||
|
|
||||||
|
img,
|
||||||
|
svg,
|
||||||
|
video,
|
||||||
|
canvas,
|
||||||
|
audio,
|
||||||
|
iframe,
|
||||||
|
embed,
|
||||||
|
object {
|
||||||
|
display: block;
|
||||||
|
/* 1 */
|
||||||
|
vertical-align: middle;
|
||||||
|
/* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
||||||
|
*/
|
||||||
|
|
||||||
|
img,
|
||||||
|
video {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root, [data-theme] {
|
||||||
|
color: hsl(var(--nextui-foreground));
|
||||||
|
background-color: hsl(var(--nextui-background));
|
||||||
|
}
|
||||||
|
|
||||||
|
*, ::before, ::after {
|
||||||
|
--tw-border-spacing-x: 0;
|
||||||
|
--tw-border-spacing-y: 0;
|
||||||
|
--tw-translate-x: 0;
|
||||||
|
--tw-translate-y: 0;
|
||||||
|
--tw-rotate: 0;
|
||||||
|
--tw-skew-x: 0;
|
||||||
|
--tw-skew-y: 0;
|
||||||
|
--tw-scale-x: 1;
|
||||||
|
--tw-scale-y: 1;
|
||||||
|
--tw-pan-x: ;
|
||||||
|
--tw-pan-y: ;
|
||||||
|
--tw-pinch-zoom: ;
|
||||||
|
--tw-scroll-snap-strictness: proximity;
|
||||||
|
--tw-gradient-from-position: ;
|
||||||
|
--tw-gradient-via-position: ;
|
||||||
|
--tw-gradient-to-position: ;
|
||||||
|
--tw-ordinal: ;
|
||||||
|
--tw-slashed-zero: ;
|
||||||
|
--tw-numeric-figure: ;
|
||||||
|
--tw-numeric-spacing: ;
|
||||||
|
--tw-numeric-fraction: ;
|
||||||
|
--tw-ring-inset: ;
|
||||||
|
--tw-ring-offset-width: 0px;
|
||||||
|
--tw-ring-offset-color: #fff;
|
||||||
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||||
|
--tw-ring-offset-shadow: 0 0 #0000;
|
||||||
|
--tw-ring-shadow: 0 0 #0000;
|
||||||
|
--tw-shadow: 0 0 #0000;
|
||||||
|
--tw-shadow-colored: 0 0 #0000;
|
||||||
|
--tw-blur: ;
|
||||||
|
--tw-brightness: ;
|
||||||
|
--tw-contrast: ;
|
||||||
|
--tw-grayscale: ;
|
||||||
|
--tw-hue-rotate: ;
|
||||||
|
--tw-invert: ;
|
||||||
|
--tw-saturate: ;
|
||||||
|
--tw-sepia: ;
|
||||||
|
--tw-drop-shadow: ;
|
||||||
|
--tw-backdrop-blur: ;
|
||||||
|
--tw-backdrop-brightness: ;
|
||||||
|
--tw-backdrop-contrast: ;
|
||||||
|
--tw-backdrop-grayscale: ;
|
||||||
|
--tw-backdrop-hue-rotate: ;
|
||||||
|
--tw-backdrop-invert: ;
|
||||||
|
--tw-backdrop-opacity: ;
|
||||||
|
--tw-backdrop-saturate: ;
|
||||||
|
--tw-backdrop-sepia: ;
|
||||||
|
--tw-contain-size: ;
|
||||||
|
--tw-contain-layout: ;
|
||||||
|
--tw-contain-paint: ;
|
||||||
|
--tw-contain-style: ;
|
||||||
|
}
|
||||||
|
|
||||||
|
::backdrop {
|
||||||
|
--tw-border-spacing-x: 0;
|
||||||
|
--tw-border-spacing-y: 0;
|
||||||
|
--tw-translate-x: 0;
|
||||||
|
--tw-translate-y: 0;
|
||||||
|
--tw-rotate: 0;
|
||||||
|
--tw-skew-x: 0;
|
||||||
|
--tw-skew-y: 0;
|
||||||
|
--tw-scale-x: 1;
|
||||||
|
--tw-scale-y: 1;
|
||||||
|
--tw-pan-x: ;
|
||||||
|
--tw-pan-y: ;
|
||||||
|
--tw-pinch-zoom: ;
|
||||||
|
--tw-scroll-snap-strictness: proximity;
|
||||||
|
--tw-gradient-from-position: ;
|
||||||
|
--tw-gradient-via-position: ;
|
||||||
|
--tw-gradient-to-position: ;
|
||||||
|
--tw-ordinal: ;
|
||||||
|
--tw-slashed-zero: ;
|
||||||
|
--tw-numeric-figure: ;
|
||||||
|
--tw-numeric-spacing: ;
|
||||||
|
--tw-numeric-fraction: ;
|
||||||
|
--tw-ring-inset: ;
|
||||||
|
--tw-ring-offset-width: 0px;
|
||||||
|
--tw-ring-offset-color: #fff;
|
||||||
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||||
|
--tw-ring-offset-shadow: 0 0 #0000;
|
||||||
|
--tw-ring-shadow: 0 0 #0000;
|
||||||
|
--tw-shadow: 0 0 #0000;
|
||||||
|
--tw-shadow-colored: 0 0 #0000;
|
||||||
|
--tw-blur: ;
|
||||||
|
--tw-brightness: ;
|
||||||
|
--tw-contrast: ;
|
||||||
|
--tw-grayscale: ;
|
||||||
|
--tw-hue-rotate: ;
|
||||||
|
--tw-invert: ;
|
||||||
|
--tw-saturate: ;
|
||||||
|
--tw-sepia: ;
|
||||||
|
--tw-drop-shadow: ;
|
||||||
|
--tw-backdrop-blur: ;
|
||||||
|
--tw-backdrop-brightness: ;
|
||||||
|
--tw-backdrop-contrast: ;
|
||||||
|
--tw-backdrop-grayscale: ;
|
||||||
|
--tw-backdrop-hue-rotate: ;
|
||||||
|
--tw-backdrop-invert: ;
|
||||||
|
--tw-backdrop-opacity: ;
|
||||||
|
--tw-backdrop-saturate: ;
|
||||||
|
--tw-backdrop-sepia: ;
|
||||||
|
--tw-contain-size: ;
|
||||||
|
--tw-contain-layout: ;
|
||||||
|
--tw-contain-paint: ;
|
||||||
|
--tw-contain-style: ;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root,.light,[data-theme="light"] {
|
||||||
|
color-scheme: light;
|
||||||
|
--nextui-background: 0 0% 100%;
|
||||||
|
--nextui-foreground-50: 0 0% 98.04%;
|
||||||
|
--nextui-foreground-100: 240 4.76% 95.88%;
|
||||||
|
--nextui-foreground-200: 240 5.88% 90%;
|
||||||
|
--nextui-foreground-300: 240 4.88% 83.92%;
|
||||||
|
--nextui-foreground-400: 240 5.03% 64.9%;
|
||||||
|
--nextui-foreground-500: 240 3.83% 46.08%;
|
||||||
|
--nextui-foreground-600: 240 5.2% 33.92%;
|
||||||
|
--nextui-foreground-700: 240 5.26% 26.08%;
|
||||||
|
--nextui-foreground-800: 240 3.7% 15.88%;
|
||||||
|
--nextui-foreground-900: 240 5.88% 10%;
|
||||||
|
--nextui-foreground: 201.81999999999994 24.44% 8.82%;
|
||||||
|
--nextui-divider: 0 0% 6.67%;
|
||||||
|
--nextui-divider-opacity: 0.15;
|
||||||
|
--nextui-focus: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-overlay: 0 0% 0%;
|
||||||
|
--nextui-content1: 0 0% 100%;
|
||||||
|
--nextui-content1-foreground: 201.81999999999994 24.44% 8.82%;
|
||||||
|
--nextui-content2: 240 4.76% 95.88%;
|
||||||
|
--nextui-content2-foreground: 240 3.7% 15.88%;
|
||||||
|
--nextui-content3: 240 5.88% 90%;
|
||||||
|
--nextui-content3-foreground: 240 5.26% 26.08%;
|
||||||
|
--nextui-content4: 240 4.88% 83.92%;
|
||||||
|
--nextui-content4-foreground: 240 5.2% 33.92%;
|
||||||
|
--nextui-default-50: 0 0% 98.04%;
|
||||||
|
--nextui-default-100: 240 4.76% 95.88%;
|
||||||
|
--nextui-default-200: 240 5.88% 90%;
|
||||||
|
--nextui-default-300: 240 4.88% 83.92%;
|
||||||
|
--nextui-default-400: 240 5.03% 64.9%;
|
||||||
|
--nextui-default-500: 240 3.83% 46.08%;
|
||||||
|
--nextui-default-600: 240 5.2% 33.92%;
|
||||||
|
--nextui-default-700: 240 5.26% 26.08%;
|
||||||
|
--nextui-default-800: 240 3.7% 15.88%;
|
||||||
|
--nextui-default-900: 240 5.88% 10%;
|
||||||
|
--nextui-default-foreground: 0 0% 0%;
|
||||||
|
--nextui-default: 240 4.88% 83.92%;
|
||||||
|
--nextui-primary-50: 212.5 92.31% 94.9%;
|
||||||
|
--nextui-primary-100: 211.84000000000003 92.45% 89.61%;
|
||||||
|
--nextui-primary-200: 211.84000000000003 92.45% 79.22%;
|
||||||
|
--nextui-primary-300: 212.24 92.45% 68.82%;
|
||||||
|
--nextui-primary-400: 212.14 92.45% 58.43%;
|
||||||
|
--nextui-primary-500: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-primary-600: 212.14 100% 38.43%;
|
||||||
|
--nextui-primary-700: 212.24 100% 28.82%;
|
||||||
|
--nextui-primary-800: 211.84000000000003 100% 19.22%;
|
||||||
|
--nextui-primary-900: 211.84000000000003 100% 9.61%;
|
||||||
|
--nextui-primary-foreground: 0 0% 100%;
|
||||||
|
--nextui-primary: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-secondary-50: 270 61.54% 94.9%;
|
||||||
|
--nextui-secondary-100: 270 59.26% 89.41%;
|
||||||
|
--nextui-secondary-200: 270 59.26% 78.82%;
|
||||||
|
--nextui-secondary-300: 270 59.26% 68.24%;
|
||||||
|
--nextui-secondary-400: 270 59.26% 57.65%;
|
||||||
|
--nextui-secondary-500: 270 66.67% 47.06%;
|
||||||
|
--nextui-secondary-600: 270 66.67% 37.65%;
|
||||||
|
--nextui-secondary-700: 270 66.67% 28.24%;
|
||||||
|
--nextui-secondary-800: 270 66.67% 18.82%;
|
||||||
|
--nextui-secondary-900: 270 66.67% 9.41%;
|
||||||
|
--nextui-secondary-foreground: 0 0% 100%;
|
||||||
|
--nextui-secondary: 270 66.67% 47.06%;
|
||||||
|
--nextui-success-50: 146.66999999999996 64.29% 94.51%;
|
||||||
|
--nextui-success-100: 145.71000000000004 61.4% 88.82%;
|
||||||
|
--nextui-success-200: 146.2 61.74% 77.45%;
|
||||||
|
--nextui-success-300: 145.78999999999996 62.57% 66.47%;
|
||||||
|
--nextui-success-400: 146.01 62.45% 55.1%;
|
||||||
|
--nextui-success-500: 145.96000000000004 79.46% 43.92%;
|
||||||
|
--nextui-success-600: 146.01 79.89% 35.1%;
|
||||||
|
--nextui-success-700: 145.78999999999996 79.26% 26.47%;
|
||||||
|
--nextui-success-800: 146.2 79.78% 17.45%;
|
||||||
|
--nextui-success-900: 145.71000000000004 77.78% 8.82%;
|
||||||
|
--nextui-success-foreground: 0 0% 0%;
|
||||||
|
--nextui-success: 145.96000000000004 79.46% 43.92%;
|
||||||
|
--nextui-warning-50: 54.55000000000001 91.67% 95.29%;
|
||||||
|
--nextui-warning-100: 37.139999999999986 91.3% 90.98%;
|
||||||
|
--nextui-warning-200: 37.139999999999986 91.3% 81.96%;
|
||||||
|
--nextui-warning-300: 36.95999999999998 91.24% 73.14%;
|
||||||
|
--nextui-warning-400: 37.00999999999999 91.26% 64.12%;
|
||||||
|
--nextui-warning-500: 37.02999999999997 91.27% 55.1%;
|
||||||
|
--nextui-warning-600: 37.00999999999999 74.22% 44.12%;
|
||||||
|
--nextui-warning-700: 36.95999999999998 73.96% 33.14%;
|
||||||
|
--nextui-warning-800: 37.139999999999986 75% 21.96%;
|
||||||
|
--nextui-warning-900: 37.139999999999986 75% 10.98%;
|
||||||
|
--nextui-warning-foreground: 0 0% 0%;
|
||||||
|
--nextui-warning: 37.02999999999997 91.27% 55.1%;
|
||||||
|
--nextui-danger-50: 339.13 92% 95.1%;
|
||||||
|
--nextui-danger-100: 340 91.84% 90.39%;
|
||||||
|
--nextui-danger-200: 339.3299999999999 90% 80.39%;
|
||||||
|
--nextui-danger-300: 339.11 90.6% 70.78%;
|
||||||
|
--nextui-danger-400: 339 90% 60.78%;
|
||||||
|
--nextui-danger-500: 339.20000000000005 90.36% 51.18%;
|
||||||
|
--nextui-danger-600: 339 86.54% 40.78%;
|
||||||
|
--nextui-danger-700: 339.11 85.99% 30.78%;
|
||||||
|
--nextui-danger-800: 339.3299999999999 86.54% 20.39%;
|
||||||
|
--nextui-danger-900: 340 84.91% 10.39%;
|
||||||
|
--nextui-danger-foreground: 0 0% 100%;
|
||||||
|
--nextui-danger: 339.20000000000005 90.36% 51.18%;
|
||||||
|
--nextui-divider-weight: 1px;
|
||||||
|
--nextui-disabled-opacity: .5;
|
||||||
|
--nextui-font-size-tiny: 0.75rem;
|
||||||
|
--nextui-font-size-small: 0.875rem;
|
||||||
|
--nextui-font-size-medium: 1rem;
|
||||||
|
--nextui-font-size-large: 1.125rem;
|
||||||
|
--nextui-line-height-tiny: 1rem;
|
||||||
|
--nextui-line-height-small: 1.25rem;
|
||||||
|
--nextui-line-height-medium: 1.5rem;
|
||||||
|
--nextui-line-height-large: 1.75rem;
|
||||||
|
--nextui-radius-small: 8px;
|
||||||
|
--nextui-radius-medium: 12px;
|
||||||
|
--nextui-radius-large: 14px;
|
||||||
|
--nextui-border-width-small: 1px;
|
||||||
|
--nextui-border-width-medium: 2px;
|
||||||
|
--nextui-border-width-large: 3px;
|
||||||
|
--nextui-box-shadow-small: 0px 0px 5px 0px rgb(0 0 0 / 0.02), 0px 2px 10px 0px rgb(0 0 0 / 0.06), 0px 0px 1px 0px rgb(0 0 0 / 0.3);
|
||||||
|
--nextui-box-shadow-medium: 0px 0px 15px 0px rgb(0 0 0 / 0.03), 0px 2px 30px 0px rgb(0 0 0 / 0.08), 0px 0px 1px 0px rgb(0 0 0 / 0.3);
|
||||||
|
--nextui-box-shadow-large: 0px 0px 30px 0px rgb(0 0 0 / 0.04), 0px 30px 60px 0px rgb(0 0 0 / 0.12), 0px 0px 1px 0px rgb(0 0 0 / 0.3);
|
||||||
|
--nextui-hover-opacity: .8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark,[data-theme="dark"] {
|
||||||
|
color-scheme: dark;
|
||||||
|
--nextui-background: 0 0% 0%;
|
||||||
|
--nextui-foreground-50: 240 5.88% 10%;
|
||||||
|
--nextui-foreground-100: 240 3.7% 15.88%;
|
||||||
|
--nextui-foreground-200: 240 5.26% 26.08%;
|
||||||
|
--nextui-foreground-300: 240 5.2% 33.92%;
|
||||||
|
--nextui-foreground-400: 240 3.83% 46.08%;
|
||||||
|
--nextui-foreground-500: 240 5.03% 64.9%;
|
||||||
|
--nextui-foreground-600: 240 4.88% 83.92%;
|
||||||
|
--nextui-foreground-700: 240 5.88% 90%;
|
||||||
|
--nextui-foreground-800: 240 4.76% 95.88%;
|
||||||
|
--nextui-foreground-900: 0 0% 98.04%;
|
||||||
|
--nextui-foreground: 210 5.56% 92.94%;
|
||||||
|
--nextui-focus: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-overlay: 0 0% 0%;
|
||||||
|
--nextui-divider: 0 0% 100%;
|
||||||
|
--nextui-divider-opacity: 0.15;
|
||||||
|
--nextui-content1: 240 5.88% 10%;
|
||||||
|
--nextui-content1-foreground: 0 0% 98.04%;
|
||||||
|
--nextui-content2: 240 3.7% 15.88%;
|
||||||
|
--nextui-content2-foreground: 240 4.76% 95.88%;
|
||||||
|
--nextui-content3: 240 5.26% 26.08%;
|
||||||
|
--nextui-content3-foreground: 240 5.88% 90%;
|
||||||
|
--nextui-content4: 240 5.2% 33.92%;
|
||||||
|
--nextui-content4-foreground: 240 4.88% 83.92%;
|
||||||
|
--nextui-default-50: 240 5.88% 10%;
|
||||||
|
--nextui-default-100: 240 3.7% 15.88%;
|
||||||
|
--nextui-default-200: 240 5.26% 26.08%;
|
||||||
|
--nextui-default-300: 240 5.2% 33.92%;
|
||||||
|
--nextui-default-400: 240 3.83% 46.08%;
|
||||||
|
--nextui-default-500: 240 5.03% 64.9%;
|
||||||
|
--nextui-default-600: 240 4.88% 83.92%;
|
||||||
|
--nextui-default-700: 240 5.88% 90%;
|
||||||
|
--nextui-default-800: 240 4.76% 95.88%;
|
||||||
|
--nextui-default-900: 0 0% 98.04%;
|
||||||
|
--nextui-default-foreground: 0 0% 100%;
|
||||||
|
--nextui-default: 240 5.26% 26.08%;
|
||||||
|
--nextui-primary-50: 211.84000000000003 100% 9.61%;
|
||||||
|
--nextui-primary-100: 211.84000000000003 100% 19.22%;
|
||||||
|
--nextui-primary-200: 212.24 100% 28.82%;
|
||||||
|
--nextui-primary-300: 212.14 100% 38.43%;
|
||||||
|
--nextui-primary-400: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-primary-500: 212.14 92.45% 58.43%;
|
||||||
|
--nextui-primary-600: 212.24 92.45% 68.82%;
|
||||||
|
--nextui-primary-700: 211.84000000000003 92.45% 79.22%;
|
||||||
|
--nextui-primary-800: 211.84000000000003 92.45% 89.61%;
|
||||||
|
--nextui-primary-900: 212.5 92.31% 94.9%;
|
||||||
|
--nextui-primary-foreground: 0 0% 100%;
|
||||||
|
--nextui-primary: 212.01999999999998 100% 46.67%;
|
||||||
|
--nextui-secondary-50: 270 66.67% 9.41%;
|
||||||
|
--nextui-secondary-100: 270 66.67% 18.82%;
|
||||||
|
--nextui-secondary-200: 270 66.67% 28.24%;
|
||||||
|
--nextui-secondary-300: 270 66.67% 37.65%;
|
||||||
|
--nextui-secondary-400: 270 66.67% 47.06%;
|
||||||
|
--nextui-secondary-500: 270 59.26% 57.65%;
|
||||||
|
--nextui-secondary-600: 270 59.26% 68.24%;
|
||||||
|
--nextui-secondary-700: 270 59.26% 78.82%;
|
||||||
|
--nextui-secondary-800: 270 59.26% 89.41%;
|
||||||
|
--nextui-secondary-900: 270 61.54% 94.9%;
|
||||||
|
--nextui-secondary-foreground: 0 0% 100%;
|
||||||
|
--nextui-secondary: 270 59.26% 57.65%;
|
||||||
|
--nextui-success-50: 145.71000000000004 77.78% 8.82%;
|
||||||
|
--nextui-success-100: 146.2 79.78% 17.45%;
|
||||||
|
--nextui-success-200: 145.78999999999996 79.26% 26.47%;
|
||||||
|
--nextui-success-300: 146.01 79.89% 35.1%;
|
||||||
|
--nextui-success-400: 145.96000000000004 79.46% 43.92%;
|
||||||
|
--nextui-success-500: 146.01 62.45% 55.1%;
|
||||||
|
--nextui-success-600: 145.78999999999996 62.57% 66.47%;
|
||||||
|
--nextui-success-700: 146.2 61.74% 77.45%;
|
||||||
|
--nextui-success-800: 145.71000000000004 61.4% 88.82%;
|
||||||
|
--nextui-success-900: 146.66999999999996 64.29% 94.51%;
|
||||||
|
--nextui-success-foreground: 0 0% 0%;
|
||||||
|
--nextui-success: 145.96000000000004 79.46% 43.92%;
|
||||||
|
--nextui-warning-50: 37.139999999999986 75% 10.98%;
|
||||||
|
--nextui-warning-100: 37.139999999999986 75% 21.96%;
|
||||||
|
--nextui-warning-200: 36.95999999999998 73.96% 33.14%;
|
||||||
|
--nextui-warning-300: 37.00999999999999 74.22% 44.12%;
|
||||||
|
--nextui-warning-400: 37.02999999999997 91.27% 55.1%;
|
||||||
|
--nextui-warning-500: 37.00999999999999 91.26% 64.12%;
|
||||||
|
--nextui-warning-600: 36.95999999999998 91.24% 73.14%;
|
||||||
|
--nextui-warning-700: 37.139999999999986 91.3% 81.96%;
|
||||||
|
--nextui-warning-800: 37.139999999999986 91.3% 90.98%;
|
||||||
|
--nextui-warning-900: 54.55000000000001 91.67% 95.29%;
|
||||||
|
--nextui-warning-foreground: 0 0% 0%;
|
||||||
|
--nextui-warning: 37.02999999999997 91.27% 55.1%;
|
||||||
|
--nextui-danger-50: 340 84.91% 10.39%;
|
||||||
|
--nextui-danger-100: 339.3299999999999 86.54% 20.39%;
|
||||||
|
--nextui-danger-200: 339.11 85.99% 30.78%;
|
||||||
|
--nextui-danger-300: 339 86.54% 40.78%;
|
||||||
|
--nextui-danger-400: 339.20000000000005 90.36% 51.18%;
|
||||||
|
--nextui-danger-500: 339 90% 60.78%;
|
||||||
|
--nextui-danger-600: 339.11 90.6% 70.78%;
|
||||||
|
--nextui-danger-700: 339.3299999999999 90% 80.39%;
|
||||||
|
--nextui-danger-800: 340 91.84% 90.39%;
|
||||||
|
--nextui-danger-900: 339.13 92% 95.1%;
|
||||||
|
--nextui-danger-foreground: 0 0% 100%;
|
||||||
|
--nextui-danger: 339.20000000000005 90.36% 51.18%;
|
||||||
|
--nextui-divider-weight: 1px;
|
||||||
|
--nextui-disabled-opacity: .5;
|
||||||
|
--nextui-font-size-tiny: 0.75rem;
|
||||||
|
--nextui-font-size-small: 0.875rem;
|
||||||
|
--nextui-font-size-medium: 1rem;
|
||||||
|
--nextui-font-size-large: 1.125rem;
|
||||||
|
--nextui-line-height-tiny: 1rem;
|
||||||
|
--nextui-line-height-small: 1.25rem;
|
||||||
|
--nextui-line-height-medium: 1.5rem;
|
||||||
|
--nextui-line-height-large: 1.75rem;
|
||||||
|
--nextui-radius-small: 8px;
|
||||||
|
--nextui-radius-medium: 12px;
|
||||||
|
--nextui-radius-large: 14px;
|
||||||
|
--nextui-border-width-small: 1px;
|
||||||
|
--nextui-border-width-medium: 2px;
|
||||||
|
--nextui-border-width-large: 3px;
|
||||||
|
--nextui-box-shadow-small: 0px 0px 5px 0px rgb(0 0 0 / 0.05), 0px 2px 10px 0px rgb(0 0 0 / 0.2), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15);
|
||||||
|
--nextui-box-shadow-medium: 0px 0px 15px 0px rgb(0 0 0 / 0.06), 0px 2px 30px 0px rgb(0 0 0 / 0.22), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15);
|
||||||
|
--nextui-box-shadow-large: 0px 0px 30px 0px rgb(0 0 0 / 0.07), 0px 30px 60px 0px rgb(0 0 0 / 0.26), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15);
|
||||||
|
--nextui-hover-opacity: .9;
|
||||||
|
}
|
||||||
|
|
@ -1,9 +1,12 @@
|
||||||
|
import Link from 'next/link'
|
||||||
import Button from 'react-bootstrap/Button'
|
import Button from 'react-bootstrap/Button'
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
<Button>
|
<Link href="/">
|
||||||
Hi
|
<Button>
|
||||||
</Button>
|
Hi
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"@emotion/styled": "^11.11.5",
|
"@emotion/styled": "^11.11.5",
|
||||||
"@nextui-org/button": "^2.0.31",
|
"@nextui-org/button": "^2.0.31",
|
||||||
"@nextui-org/react": "^2.3.6",
|
"@nextui-org/react": "^2.3.6",
|
||||||
|
"@types/react-bootstrap": "^0.32.36",
|
||||||
"bootstrap": "^5.3.3",
|
"bootstrap": "^5.3.3",
|
||||||
"framer-motion": "^11.0.25",
|
"framer-motion": "^11.0.25",
|
||||||
"level-rocksdb": "^5.0.0",
|
"level-rocksdb": "^5.0.0",
|
||||||
|
|
@ -45,6 +46,7 @@
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"mocha": "^10.4.0",
|
"mocha": "^10.4.0",
|
||||||
"sinon": "^17.0.1",
|
"sinon": "^17.0.1",
|
||||||
|
"tailwindcss": "^3.4.3",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5"
|
"typescript": "^5"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,11 @@
|
||||||
|
const { nextui } = require("@nextui-org/react")
|
||||||
|
|
||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: ["./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
darkMode: "class",
|
||||||
|
plugins: [nextui()],
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue