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