diff --git a/fasthtml/images/Zach.jpg b/fasthtml/images/Zach.jpg
new file mode 100644
index 0000000..6d8cd4a
Binary files /dev/null and b/fasthtml/images/Zach.jpg differ
diff --git a/fasthtml/images/dan.png b/fasthtml/images/dan.png
new file mode 100644
index 0000000..8cfafa3
Binary files /dev/null and b/fasthtml/images/dan.png differ
diff --git a/fasthtml/images/greg.jpeg b/fasthtml/images/greg.jpeg
new file mode 100644
index 0000000..75b73d1
Binary files /dev/null and b/fasthtml/images/greg.jpeg differ
diff --git a/fasthtml/images/hamel.png b/fasthtml/images/hamel.png
new file mode 100644
index 0000000..56bbed4
Binary files /dev/null and b/fasthtml/images/hamel.png differ
diff --git a/fasthtml/images/jason.jpg b/fasthtml/images/jason.jpg
new file mode 100644
index 0000000..63e689d
Binary files /dev/null and b/fasthtml/images/jason.jpg differ
diff --git a/fasthtml/images/jeremy.jpeg b/fasthtml/images/jeremy.jpeg
new file mode 100644
index 0000000..076983d
Binary files /dev/null and b/fasthtml/images/jeremy.jpeg differ
diff --git a/fasthtml/images/jnbrymn.png b/fasthtml/images/jnbrymn.png
new file mode 100644
index 0000000..e5942ad
Binary files /dev/null and b/fasthtml/images/jnbrymn.png differ
diff --git a/fasthtml/images/jpatterson.png b/fasthtml/images/jpatterson.png
new file mode 100644
index 0000000..a7c4112
Binary files /dev/null and b/fasthtml/images/jpatterson.png differ
diff --git a/fasthtml/images/luke.png b/fasthtml/images/luke.png
new file mode 100644
index 0000000..96cca57
Binary files /dev/null and b/fasthtml/images/luke.png differ
diff --git a/fasthtml/images/shreya.jpeg b/fasthtml/images/shreya.jpeg
new file mode 100644
index 0000000..d7350cc
Binary files /dev/null and b/fasthtml/images/shreya.jpeg differ
diff --git a/fasthtml/main.py b/fasthtml/main.py
new file mode 100644
index 0000000..55a4469
--- /dev/null
+++ b/fasthtml/main.py
@@ -0,0 +1,49 @@
+from fasthtml.common import *
+from monsterui.all import *
+from team import team_members
+
+app, rt = fast_app(hdrs=Theme.blue.headers(), live=True)
+
+def NavBar():
+ return NavBarContainer(
+ NavBarLSide(H3("Parlance Labs")),
+ NavBarRSide(NavBarNav(
+ Li(A("Services", href="/services")),
+ Li(A("Blog", href="/education")),
+ Li(A("Team", href=team)),
+ Li(A("Education", href="/education")),
+ Li(A("Theme", href=theme)))))
+
+# def TOC():
+# mbrs1 = map(lambda x: Li(A(x, href='#'+x.lower(), cls='text-sm capitalize')), team_members.keys())
+# return NavContainer(*mbrs1, cls=(NavT.primary,'w-48 p-2 rounded float-right sticky top-4 hidden md:block'))
+
+def TOC():
+ mbrs1 = map(lambda x: Li(A(x, href='#'+x.lower(), cls='text-sm capitalize')), team_members.keys())
+ return NavContainer(*mbrs1,
+ cls=(NavT.primary,'w-48 p-2 rounded float-right sticky top-4 md:block'),
+ uk_scrollspy_nav="closest: li; scroll: true")
+def TeamCard(name, description, img):
+ return Card(
+ DivLAligned(
+ Img(src=img, cls='rounded-full w-24 h-24 object-cover'),
+ Div(H3(name, cls='capitalize')),
+ cls='space-x-10'),
+ render_md(description),
+ footer=DivRAligned(*(UkIconLink(icon, height=16) for icon in ("linkedin", "globe"))),
+ id=name.lower())
+
+@rt
+def team():
+ return NavBar(), Titled("Team",
+ P("The Parlance Team"),
+ TOC(),
+ Grid(*[TeamCard(name, desc, f'../images/{img}') for name, (img, desc) in team_members.items()], cols=1),
+ cls=ContainerT.large)
+
+@rt
+def theme():
+ from fasthtml.components import Uk_theme_switcher
+ return NavBar(), Uk_theme_switcher()
+
+serve()
\ No newline at end of file
diff --git a/fasthtml/team.py b/fasthtml/team.py
new file mode 100644
index 0000000..b4c2add
--- /dev/null
+++ b/fasthtml/team.py
@@ -0,0 +1,10 @@
+team_members = {
+ "hamel": ('hamel.png', '''[Hamel Husain](https://hamel.dev) is a machine learning engineer with over 25 years of experience. He has worked with innovative companies such as Airbnb and GitHub, which included early LLM research used by OpenAI for code understanding. He has also led and contributed to numerous popular [open-source machine-learning tools](https://hamel.dev/oss/opensource.html).'''),
+ "shreya": ('shreya.jpeg', '''[Shreya](https://www.sh-reya.com/) is a leading researcher on applied ML and AI systems. She has led extensive research on human-computer interaction for low-code tools to program complex LLM workflows including evals, monitoring and fine-tuning. Her research has been adopted widely and is incorporated into many commercial LLM tools such as Langsmith, Autoblocks, Parea, and more.'''),
+ "john": ('jnbrymn.png', '''[John](https://arcturus-labs.com/) has worked in technology since 2012. The first half of his career was spent building search applications. John helped build next-generation search for the U.S. Patent Office, built Eventbrite's search and recommendation platforms, built GitHub's code search, and co-authored a book – Relevant Search (Manning). While at GitHub, John moved into Data Science and then into Machine Learning with GitHub's Copilot code completions and chat products. John is currently co-authoring ...'''),
+ "josh": ('jpatterson.png', '''[Josh Patterson](https://www.pattersonconsultingtn.com), with over 20 years in AI, has a rich history of contributions to the field. He played a key role in developing autonomous driving systems for DARPA Grand Challenge and optimizing mesh network routing with Ant Colony Optimization during his graduate studies. As a principal solutions architect and early employee at Cloudera, he significantly contributed to the company's growth. Co-author of "Deep Learning: A Practitioner's Approach" and "Kubeflow Operat...'''),
+ "jason": ('jason.jpg', '''[Jason Liu](https://jxnl.co/services/) is a distinguished machine learning [consultant](https://jxnl.co/services/) known for leading teams to successfully ship AI products. Jason's technical expertise covers personalization algorithms, search optimization, synthetic data generation, and MLOps systems. His experience includes companies like Stitch Fix, where he created a recommendation framework and observability tools that handled 350 million daily requests. Additional roles have included Meta, NYU, and startups such as Limitless AI and more.'''),
+ "luke": ('luke.png', '''[Luke Marsden](https://mlops.consulting) is a consultant with deep experience with LLMs, infrastructure and GenAI application patterns. He has a particular focus on open source models and fine-tuning, having advised clients globally on the impact and opportunity for GenAI on their business. In the [Helix](https://helix.ml) stack, he led the creation of a fine-tuning product based on Axolotl, documented in the popular blog post [How we got fine-tuning Mistral-7B to not suck](https://blog.helix.ml/p/how-we-go...'''),
+ "greg": ('greg.jpeg', '''[Greg Ceccarelli](https://www.gregceccarelli.com/) is a former Chief Product Officer and operator who advises executives on how to win with AI. He's shipped multiple AI products at Pluralsight and GitHub and has spent the last two decades helping companies create competitive advantage with data. He's an AI and Developer Tools product strategy advisor at [Tola Capital](https://tolacapital.com/) and writes weekly on [Substack](https://meditationsontech.com) and maintains [gregslist.ai](https://gregslist.ai) for AI job listings.'''),
+}
+
diff --git a/fasthtml/team.qmd b/fasthtml/team.qmd
new file mode 100644
index 0000000..936e2e4
--- /dev/null
+++ b/fasthtml/team.qmd
@@ -0,0 +1,50 @@
+---
+title: "Team"
+description: "The Parlance team"
+image: cover_2.png
+repo-actions: false
+sidebar: false
+search: false
+---
+
+## Hamel Husain
+
+{width=70 style="float:left"}
+
+[Hamel Husain](https://hamel.dev) is a machine learning engineer with over 25 years of experience. He has worked with innovative companies such as Airbnb and GitHub, which included early LLM research used by OpenAI for code understanding. He has also led and contributed to numerous popular [open-source machine-learning tools](https://hamel.dev/oss/opensource.html).
+
+## Shreya Shankar
+
+{width=70 style="float:left"}
+
+[Shreya](https://www.sh-reya.com/) is a leading researcher on applied ML and AI systems. She has led extensive research on human-computer interaction for low-code tools to program complex LLM workflows including evals, monitoring and fine-tuning. Her research has been adopted widely and is incorporated into many commercial LLM tools such as Langsmith, Autoblocks, Parea, and more.
+
+## John Berryman
+
+{width=70 style="float:left"}
+
+[John](https://arcturus-labs.com/) has worked in technology since 2012. The first half of his career was spent building search applications. John helped build next-generation search for the U.S. Patent Office, built Eventbrite's search and recommendation platforms, built GitHub's code search, and co-authored a book – Relevant Search (Manning). While at GitHub, John moved into Data Science and then into Machine Learning with GitHub's Copilot code completions and chat products. John is currently co-authoring an O'Reilly book for LLM application development.
+
+## Josh Patterson
+
+{width=70 style="float:left"}
+
+[Josh Patterson](https://www.pattersonconsultingtn.com), with over 20 years in AI, has a rich history of contributions to the field. He played a key role in developing autonomous driving systems for DARPA Grand Challenge and optimizing mesh network routing with Ant Colony Optimization during his graduate studies. As a principal solutions architect and early employee at Cloudera, he significantly contributed to the company's growth. Co-author of "Deep Learning: A Practitioner's Approach" and "Kubeflow Operations Guide," Josh is also a co-founder of the Eclipse Deeplearning4j project, demonstrating his expertise in generative neural networks. Currently, he focuses on Conversational AI, Automation AI, and the intersection of data and prompt engineering, driving advancements in generative AI technologies.
+
+## Jason Liu
+
+{width=70 style="float:left"}
+
+Jason Liu is a distinguished machine learning [consultant](https://jxnl.co/services/) known for leading teams to successfully ship AI products. Jason's technical expertise covers personalization algorithms, search optimization, synthetic data generation, and MLOps systems. His experience includes companies like Stitch Fix, where he created a recommendation framework and observability tools that handled 350 million daily requests. Additional roles have included Meta, NYU, and startups such as Limitless AI and Trunk Tools.
+
+## Luke Marsden
+
+{width=70 style="float:left"}
+
+[Luke Marsden](https://mlops.consulting) is a consultant with deep experience with LLMs, infrastructure and GenAI application patterns. He has a particular focus on open source models and fine-tuning, having advised clients globally on the impact and opportunity for GenAI on their business. In the [Helix](https://helix.ml) stack, he led the creation of a fine-tuning product based on Axolotl, documented in the popular blog post [How we got fine-tuning Mistral-7B to not suck](https://blog.helix.ml/p/how-we-got-fine-tuning-mistral-7b) and then extended the stack to include multi-node Ollama on Kubernetes, API calling from open LLMs, RAG with pgvector and running gptscript securely on the server.
+
+## Greg Ceccarelli
+
+{width=70 style="float:left"}
+
+[Greg Ceccarelli](https://www.gregceccarelli.com/) is a former Chief Product Officer and operator who advises executives on how to win with AI. He's shipped multiple AI products at Pluralsight and GitHub and has spent the last two decades helping companies create competitive advantage with data. He's an AI and Developer Tools product strategy advisor at [Tola Capital](https://tolacapital.com/) and writes weekly on [Substack](https://meditationsontech.com) and maintains [gregslist.ai](https://gregslist.ai) for super fast AI product discovery.
\ No newline at end of file