[]` | Inject one or more custom schema.org objects |
```ts
interface BreadcrumbItem {
name: string;
url: string; // absolute URL
}
```
#### Alternates & Resource Hints
| Prop | Type | Description |
| --- | --- | --- |
| `alternateLocales` | `AlternateLocale[]` | Emits `` for each entry |
| `preconnect` | `string[]` | Emits `` for each origin |
| `dnsPrefetch` | `string[]` | Emits `` for each origin |
```ts
interface AlternateLocale {
hreflang: string; // e.g. "en", "fa", "x-default"
href: string; // absolute URL
}
```
#### Favicon & Manifest
| Prop | Type | Default | Description |
| --- | --- | --- | --- |
| `faviconSvg` | `string` | `'/favicon.svg'` | Path to SVG favicon |
| `faviconIco` | `string` | — | Path to `.ico` favicon (legacy browsers) |
| `appleTouchIcon` | `string` | — | Path to Apple touch icon (180×180 PNG) |
| `manifestHref` | `string` | — | Path to `manifest.json` / `manifest.webmanifest` |
---
### Full example — article page
```astro
---
import BaseLayout from '../layouts/BaseLayout.astro';
---
```
---
## 🧞 Commands
| Command | Action |
| ---------------------- | ------------------------------------ |
| `npm run dev` | Start dev server at `localhost:4321` |
| `npm run build` | Build production site to `./dist/` |
| `npm run preview` | Preview the production build locally |
| `npm run format` | Format code with Prettier |
| `npm run lint` | Lint with ESLint |
| `docker compose up -d` | Run container in background |
---
## 🤝 Contributing
1. Fork the repo
2. Create a branch: `git checkout -b feature/your-feature`
3. Commit: `git commit -m 'feat: add your feature'`
4. Push and open a Pull Request
---
## 🌌 About Advento
At [Advento](https://advento.ir), we are redefining the digital marketing landscape. By harnessing the absolute edge of Artificial Intelligence, we deliver highly scalable, data-driven, and innovative solutions. This repository is part of our commitment to pushing the boundaries of what's possible in digital marketing technology.
---
## 📄 License
MIT — see [LICENSE](LICENSE) for details.
---
Made with ❤️ by [**Advento**](https://advento.ir)