update deps

This commit is contained in:
Chris Wanstrath 2026-02-18 10:48:01 -08:00
parent 14e44d1592
commit d64b855a90
17 changed files with 17 additions and 17 deletions

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { Section } from './section'
import { H2, Text } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
export const Box = define('Box', {

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { VStack, HStack } from './stack'
import { Section } from './section'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
// Code block container

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { Section } from './section'
import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { VStack, HStack } from './stack'
import { Button } from './button'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import * as icons from 'lucide-static'
import { Grid } from './grid'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { Section } from './section'
import { H2, H3, H4, H5, Text } from './text'
import { VStack, HStack } from './stack'

View File

@ -1,5 +1,5 @@
// Re-export Forge utilities
export { Styles, extendThemes } from 'forge'
export { Styles, extendThemes } from '@because/forge'
export { theme } from './theme'
export { cn } from './cn'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { Section } from './section'
import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
// Dark mode toggle button

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
export const Section = define('Section', {

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { Section } from './section'
import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
import { H2 } from './text'
import { RedBox, GreenBox, BlueBox } from './box'

View File

@ -1,4 +1,4 @@
import { define } from 'forge'
import { define } from '@because/forge'
import { theme } from './theme'
export const H1 = define('H1', {

View File

@ -1,4 +1,4 @@
import { createThemes } from 'forge'
import { createThemes } from '@because/forge'
const lightTheme = {
// Colors

View File

@ -1,6 +1,6 @@
import "hono/jsx"
import { raw } from "hono/html"
import { Styles } from "forge"
import { Styles } from '@because/forge'
import {
DarkModeToggle,
PageTitle,