diff --git a/docs/_config.yml b/docs/_config.yml
new file mode 100644
index 00000000..3d2c0253
--- /dev/null
+++ b/docs/_config.yml
@@ -0,0 +1 @@
+baseurl: /chartifact
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
new file mode 100644
index 00000000..1c179762
--- /dev/null
+++ b/docs/_layouts/default.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ {% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}
+
+
+
+
+
+
+
+ {{ content }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/assets/css/style.css b/docs/assets/css/style.css
new file mode 100644
index 00000000..b82276fc
--- /dev/null
+++ b/docs/assets/css/style.css
@@ -0,0 +1,91 @@
+/* Minimal CSS for Chartifact landing page */
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
+ line-height: 1.6;
+ color: #333;
+}
+
+.wrapper {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+}
+
+.content {
+ flex: 1;
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 2rem 1rem;
+}
+
+h1 {
+ font-size: 2.5rem;
+ font-weight: 300;
+ margin-bottom: 1rem;
+}
+
+h2 {
+ font-size: 1.5rem;
+ font-weight: 300;
+ margin: 1.5rem 0 1rem 0;
+}
+
+p, ul {
+ margin-bottom: 1rem;
+}
+
+ul {
+ padding-left: 1.5rem;
+}
+
+a {
+ color: #0078d4;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+/* Footer */
+.footer {
+ background: #f8f9fa;
+ border-top: 1px solid #e9ecef;
+ padding: 0.75rem 0;
+ margin-top: auto;
+ font-size: 0.75rem;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 1.5rem;
+ flex-wrap: wrap;
+}
+
+.footer-content span,
+.footer-content a {
+ color: #343a40;
+ text-decoration: none;
+}
+
+.footer-content a:hover {
+ color: #0078d4;
+}
+
+@media (max-width: 768px) {
+ .content { padding: 1rem; }
+ h1 { font-size: 2rem; }
+ .footer-content { gap: 1rem; }
+}
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 00000000..9b24b279
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,9 @@
+---
+layout: default
+title: "Chartifact Home"
+---
+
+# Chartifact
+
+
+Visit our [GitHub repository](https://github.com/microsoft/chartifact) to learn more, report issues, or contribute to the project.