import { Hono } from 'hono' import { IndexPage } from './examples/index' import { ProfileExamplesPage } from './examples/profile' import { ButtonExamplesPage } from './examples/button' import { NavigationExamplesPage } from './examples/navigation' import { styles, stylesToCSS } from './src' const app = new Hono() app.get('/', c => { return c.html() }) app.get('/profile', c => { return c.html() }) app.get('/buttons', c => { return c.html() }) app.get('/navigation', c => { return c.html() }) app.get('/styles', c => { return c.text(stylesToCSS(styles)) }) export default { port: 3300, fetch: app.fetch, }