Perfect — here’s the full set for ZamAI/zamai.github.io
# ZamAI
Official public website for **ZamAI** — the home of **Zeerak**, the flagship AI assistant by ZamAI.
## Live Site
- https://zamai.dev
## Overview
ZamAI is the public-facing organization and ecosystem behind Zeerak and future AI products, tools, and digital experiences.
This repository contains the public website and brand presence for ZamAI.
## Brand Structure
- **ZamAI** → parent organization, ecosystem, and public identity
- **Zeerak** → flagship AI assistant by ZamAI
## Repository Purpose
This repository is intended for:
- the ZamAI landing page
- public brand presence
- public-facing product messaging
- future docs, showcase pages, and ecosystem pages
This repository does **not** contain Zeerak’s private core implementation.
## Tech Stack
- HTML
- Tailwind CSS via CDN
- Vanilla JavaScript
- GitHub Pages
## Domain
Custom domain:
- `zamai.dev`
## Deployment
The site is deployed via **GitHub Pages** from the root of the default branch.
## Structure
```text
.
├── index.html
├── CNAME
├── README.md
├── assets/
│ ├── favicon.svg
│ ├── logo.svg
│ └── og-image.png
```
## Notes
- Zeerak is presented publicly as the flagship assistant by ZamAI.
- Core Zeerak source code remains private.
- Public-facing product, brand, and ecosystem assets live here.Use this:
zamai.github.io/
├── index.html
├── CNAME
├── README.md
└── assets/
├── favicon.svg
├── logo.svg
└── og-image.png
If you want to expand later:
zamai.github.io/
├── index.html
├── CNAME
├── README.md
├── assets/
│ ├── favicon.svg
│ ├── logo.svg
│ ├── og-image.png
│ └── social-preview.png
├── pages/
│ ├── zeerak.html
│ ├── about.html
│ └── contact.html
└── scripts/
└── main.js
For now, keep it simple:
index.htmlCNAMEREADME.mdassets/
You need two lightweight brand assets first:
This can be a clean ZamAI logo for future reuse.
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="zamaiGradient" x1="32" y1="32" x2="224" y2="224" gradientUnits="userSpaceOnUse">
<stop stop-color="#3B82F6"/>
<stop offset="0.5" stop-color="#22D3EE"/>
<stop offset="1" stop-color="#8B5CF6"/>
</linearGradient>
</defs>
<rect x="24" y="24" width="208" height="208" rx="56" fill="#020617"/>
<rect x="28" y="28" width="200" height="200" rx="52" stroke="url(#zamaiGradient)" stroke-width="8"/>
<path d="M80 78H176V94L108 162H176V178H80V162L148 94H80V78Z" fill="url(#zamaiGradient)"/>
</svg>Use a simplified Z mark.
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="favGradient" x1="8" y1="8" x2="56" y2="56" gradientUnits="userSpaceOnUse">
<stop stop-color="#3B82F6"/>
<stop offset="0.5" stop-color="#22D3EE"/>
<stop offset="1" stop-color="#8B5CF6"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="56" height="56" rx="18" fill="#020617"/>
<rect x="5.5" y="5.5" width="53" height="53" rx="16.5" stroke="url(#favGradient)" stroke-width="3"/>
<path d="M18 18H46V22L25 42H46V46H18V42L39 22H18V18Z" fill="url(#favGradient)"/>
</svg>Add these inside <head>:
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="apple-touch-icon" href="/assets/favicon.svg" />If you want to display the logo in the nav later, replace the text block with an image like:
<img src="/assets/logo.svg" alt="ZamAI logo" class="h-10 w-10" />For now, your text-based nav is already good, so favicon matters more immediately.
You need an image for link previews on:
- X / Twitter
- Discord
- Slack
- GitHub social previews
Create:
assets/og-image.png
Use:
1200 x 630 px
This is the safest standard for Open Graph.
Use this layout:
- dark premium background
- subtle blue/cyan/violet glow
- slight grid texture if possible
Big headline:
- ZamAI
Subheadline:
- Home of Zeerak or
- Zeerak, the flagship AI assistant by ZamAI
- AI products, tools, and digital experiences
- a glowing
Z - or your logo mark
- or a premium mock terminal/chat card
Use your brand palette:
#020617#3B82F6#22D3EE#8B5CF6- white text
ZamAI
Home of Zeerak
Zeerak by ZamAI
The flagship AI assistant
ZamAI
AI products, tools, and intelligent experiences
Once assets/og-image.png exists, use:
<meta property="og:image" content="https://zamai.dev/assets/og-image.png" />
<meta name="twitter:image" content="https://zamai.dev/assets/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />Your current page should include both og:image and twitter:image.
Create these now:
Use the version above
Use the SVG above
Use the SVG above
Create later if you want, but plan for it now
If you want, I can now give you a fully updated index.html head section with:
- favicon
- OG tags
- Twitter tags
- cleaner SEO meta tags
Or I can generate:
- a simple SVG-based OG image as code
- or a full polished repo starter pack with all file contents together.