Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,33 @@ PUBLIC_EMAILJS_PUBLIC_KEY=your_public_key
```
src/
├── pages/
│ ├── index.astro # Root redirect + language detection
│ └── [lang]/ # Dynamic routes (en/es)
│ ├── index.astro # Main landing page
│ ├── privacy.astro # Privacy policy
│ ├── projects/[id].astro # Project detail pages
│ └── kted/[variant].astro # KTED landing variants
│ ├── index.astro # Root redirect + language detection
│ └── [lang]/ # Dynamic routes (en/es)
│ ├── index.astro # Main landing page
│ ├── privacy.astro # Privacy policy
│ ├── projects/[id].astro # Project detail pages
│ └── kted/[variant].astro # KTED landing variants
├── components/
│ ├── Hero.astro # Hero with 3D logo
│ ├── OsixLogo3D.jsx # Three.js interactive logo
│ ├── BentoGridSection.astro # Services bento grid
│ ├── ProjectsSection.astro # Projects showcase
│ ├── AboutSection.astro # Team section
│ ├── Hero.astro # Hero with 3D logo
│ ├── OsixLogo3D.jsx # Three.js interactive logo
│ ├── BentoGridSection.astro # Services bento grid
│ ├── ProjectsSection.astro # Projects showcase
│ ├── AboutSection.astro # Team section
│ ├── StaticContactSection.astro # Contact form (EmailJS)
│ ├── kted/ # KTED-specific components
│ └── ui/ # Radix UI primitives
│ ├── kted/ # KTED-specific components
│ └── ui/ # Radix UI primitives
├── data/
│ └── projects-multilingual.ts # Project definitions (en/es)
│ └── projects-multilingual.ts # Project definitions (en/es)
├── content/
│ ├── en/ # English markdown content
│ └── es/ # Spanish markdown content
│ ├── en/ # English markdown content
│ └── es/ # Spanish markdown content
└── utils/
├── emailjs.js # EmailJS config
└── analytics.ts # GA4 tracking
├── emailjs.js # EmailJS config
└── analytics.ts # GA4 tracking
public/
├── locales/ # i18next translation JSONs
├── animations/ # Rive .riv files
└── projects/ # Project images & videos
├── locales/ # i18next translation JSONs
├── animations/ # Rive .riv files
└── projects/ # Project images & videos
```

## Sections
Expand Down Expand Up @@ -99,4 +99,4 @@ Automatic deployment to GitHub Pages on push to `master` via the `.github/workfl
- JSON-LD structured data (Organization, WebPage, BreadcrumbList)
- Language alternates (hreflang)
- Sitemap & robots.txt
- Google Analytics 4
- Google Analytics 4