gitextract_txjs_ovg/ ├── .github/ │ └── workflows/ │ └── stale.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public/ │ ├── js/ │ │ ├── animate.js │ │ ├── bg.js │ │ ├── copy.js │ │ ├── scroll.js │ │ └── theme.js │ └── robots.txt ├── src/ │ ├── components/ │ │ ├── ArrowCard.tsx │ │ ├── BaseHead.astro │ │ ├── Container.astro │ │ ├── Counter.tsx │ │ ├── Drawer.astro │ │ ├── Footer.astro │ │ ├── Header.astro │ │ ├── MeteorShower.astro │ │ ├── Search.tsx │ │ ├── SearchBar.tsx │ │ ├── SearchCollection.tsx │ │ ├── StackCard.astro │ │ └── TwinklingStars.astro │ ├── consts.ts │ ├── content/ │ │ ├── blog/ │ │ │ ├── 01-astro-sphere-file-structure/ │ │ │ │ └── index.md │ │ │ ├── 02-astro-sphere-getting-started/ │ │ │ │ └── index.md │ │ │ ├── 03-astro-sphere-add-new-post-or-projects/ │ │ │ │ └── index.md │ │ │ ├── 04-astro-sphere-writing-markdown/ │ │ │ │ └── index.md │ │ │ ├── 05-astro-sphere-writing-mdx/ │ │ │ │ ├── MyComponent.astro │ │ │ │ └── index.mdx │ │ │ └── 06-astro-sphere-social-links/ │ │ │ └── index.md │ │ ├── config.ts │ │ ├── legal/ │ │ │ ├── privacy.md │ │ │ └── terms.md │ │ ├── projects/ │ │ │ ├── project-1/ │ │ │ │ └── index.md │ │ │ ├── project-2/ │ │ │ │ └── index.md │ │ │ ├── project-3/ │ │ │ │ └── index.md │ │ │ └── project-4/ │ │ │ └── index.md │ │ └── work/ │ │ ├── apple.md │ │ ├── facebook.md │ │ ├── google.md │ │ └── mcdonalds.md │ ├── env.d.ts │ ├── layouts/ │ │ ├── ArticleBottomLayout.astro │ │ ├── ArticleTopLayout.astro │ │ ├── BottomLayout.astro │ │ ├── PageLayout.astro │ │ └── TopLayout.astro │ ├── lib/ │ │ └── utils.ts │ ├── pages/ │ │ ├── blog/ │ │ │ ├── [...slug].astro │ │ │ └── index.astro │ │ ├── index.astro │ │ ├── legal/ │ │ │ └── [...slug].astro │ │ ├── projects/ │ │ │ ├── [...slug].astro │ │ │ └── index.astro │ │ ├── robots.txt.ts │ │ ├── rss.xml.ts │ │ ├── search/ │ │ │ └── index.astro │ │ └── work/ │ │ └── index.astro │ ├── styles/ │ │ └── global.css │ └── types.ts ├── tailwind.config.mjs └── tsconfig.json