Understand the Tailcast project structure
mainTailcast follows a standard Astro project structure. Key directories include:
public/: Static assets likefavicon.svg,og-image.png, androbots.txt.src/assets/: Containsicons/(SVG components),images/(optimized via Astro Image), andlogos/(brand components).src/components/: Reusable Astro components.src/content/blog/: Markdown-based blog posts.src/data/: Static data, such as job positions.src/layouts/: Base layouts, specificallyLayout.astrowhich handles SEO meta tags.src/pages/: File-based routing (e.g.,index.astro,about.astro,blog/,careers/,contact.astro,404.astro).src/styles/: CSS files includingTheme.css(design tokens & utility classes) anddiagonals.css.