├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets ├── hello.png ├── htmx-meme.png ├── logo.svg ├── og-sq.png └── webdev.jpg ├── components.py ├── docs ├── CNAME └── index.html ├── favicon.ico ├── foundations.py ├── main.py ├── overview.py ├── requirements.txt ├── tech.py └── vision.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/app.py -------------------------------------------------------------------------------- /assets/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/assets/hello.png -------------------------------------------------------------------------------- /assets/htmx-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/assets/htmx-meme.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/og-sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/assets/og-sq.png -------------------------------------------------------------------------------- /assets/webdev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/assets/webdev.jpg -------------------------------------------------------------------------------- /components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/components.py -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | about.fastht.ml 2 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/docs/index.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/favicon.ico -------------------------------------------------------------------------------- /foundations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/foundations.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/main.py -------------------------------------------------------------------------------- /overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/overview.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-fasthtml 2 | monsterui -------------------------------------------------------------------------------- /tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/tech.py -------------------------------------------------------------------------------- /vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fh-about/HEAD/vision.py --------------------------------------------------------------------------------