gitextract_s3upq0ay/ ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── README.md ├── package.json ├── postcss.config.js ├── src/ │ ├── app.tsx │ ├── assets/ │ │ └── styles.css │ ├── components/ │ │ ├── article/ │ │ │ ├── article.tsx │ │ │ ├── content.tsx │ │ │ ├── image.tsx │ │ │ ├── index.ts │ │ │ ├── media.tsx │ │ │ └── title.tsx │ │ ├── footer/ │ │ │ ├── footer.tsx │ │ │ └── index.ts │ │ ├── gradient/ │ │ │ ├── gradient.tsx │ │ │ └── index.ts │ │ ├── header/ │ │ │ ├── header.tsx │ │ │ └── index.ts │ │ ├── hero/ │ │ │ ├── hero.tsx │ │ │ ├── illustration.tsx │ │ │ └── index.ts │ │ ├── layout/ │ │ │ ├── index.ts │ │ │ └── layout.tsx │ │ ├── logo/ │ │ │ ├── index.ts │ │ │ └── logo.tsx │ │ ├── menu/ │ │ │ ├── index.tsx │ │ │ ├── menu-item.tsx │ │ │ └── menu.tsx │ │ ├── newsletter-form/ │ │ │ ├── index.ts │ │ │ └── newsletter-form.tsx │ │ ├── scroll-to-top/ │ │ │ ├── index.ts │ │ │ └── scroll-to-top.tsx │ │ └── social-links/ │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── social-link.tsx │ │ └── social-links.tsx │ ├── index.html │ ├── index.tsx │ ├── routes/ │ │ ├── about.tsx │ │ ├── contact.tsx │ │ ├── faqs.tsx │ │ ├── home.tsx │ │ └── support.tsx │ ├── utils/ │ │ └── cn.ts │ └── vite-env.d.ts ├── styles/ │ └── tailwind.css ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts