Compare commits

..

No commits in common. "44cc1ac10f5992406de99db3388b1a61adbd6ae1" and "14e44d1592fa0c004ac439a503723bdc19c130df" have entirely different histories.

18 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@because/howl",
"version": "0.0.2",
"version": "0.0.1",
"module": "src/index.tsx",
"type": "module",
"exports": "./src/index.tsx",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
import { define } from '@because/forge'
import { define } from '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 '@because/forge'
export { Styles, extendThemes } from 'forge'
export { theme } from './theme'
export { cn } from './cn'

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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