gitextract_3ev1jqlw/ ├── .gitignore ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma/ │ └── schema.prisma ├── prisma.config.ts ├── src/ │ ├── app/ │ │ ├── (site)/ │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── providers.tsx │ │ ├── layout.tsx │ │ └── not-found.tsx │ ├── components/ │ │ ├── 404/ │ │ │ └── index.tsx │ │ ├── Blog/ │ │ │ └── BlogItem.tsx │ │ ├── Common/ │ │ │ ├── Breadcrumb.tsx │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── PreLoader.tsx │ │ │ ├── SectionHeader.tsx │ │ │ └── SectionTitleH2.tsx │ │ ├── Footer/ │ │ │ └── index.tsx │ │ ├── Header/ │ │ │ ├── Dropdown.tsx │ │ │ ├── ThemeSwitcher.tsx │ │ │ ├── index.tsx │ │ │ └── menuData.ts │ │ └── Home/ │ │ ├── Blog/ │ │ │ └── index.tsx │ │ ├── CallToAction/ │ │ │ └── index.tsx │ │ ├── Counter/ │ │ │ ├── CountUp.tsx │ │ │ └── index.tsx │ │ ├── FAQ/ │ │ │ ├── FaqItem.tsx │ │ │ ├── faqData.ts │ │ │ └── index.tsx │ │ ├── Features/ │ │ │ ├── FeatureItem.tsx │ │ │ ├── featuresData.ts │ │ │ └── index.tsx │ │ ├── FeaturesWithImage/ │ │ │ ├── FeatureItem.tsx │ │ │ ├── featuresData.ts │ │ │ └── index.tsx │ │ ├── Hero/ │ │ │ ├── Brand.tsx │ │ │ ├── brandData.tsx │ │ │ └── index.tsx │ │ ├── Newsletter/ │ │ │ ├── Graphics.tsx │ │ │ └── index.tsx │ │ ├── Pricing/ │ │ │ ├── PriceItem.tsx │ │ │ └── index.tsx │ │ ├── Testimonials/ │ │ │ ├── TestimonialItem.tsx │ │ │ ├── index.tsx │ │ │ └── testmonialsData.ts │ │ └── index.tsx │ ├── libs/ │ │ └── scrollActive.js │ ├── pricing/ │ │ └── pricingData.ts │ ├── styles/ │ │ ├── globals.css │ │ └── satoshi.css │ └── types/ │ ├── blog.ts │ ├── faq.ts │ ├── featureItem.ts │ ├── featureWithImg.ts │ ├── menu.ts │ ├── priceItem.ts │ └── testimonial.ts └── tsconfig.json