feat: add Home page with Hero, Features, HowItWorks, Pricing, Contact sections

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 13:18:40 +08:00
parent 3ecf1e169c
commit 274342aab6
6 changed files with 393 additions and 0 deletions

26
src/pages/HomePage.tsx Normal file
View File

@@ -0,0 +1,26 @@
import SEOHead from '../components/seo/SEOHead';
import HeroSection from '../components/home/HeroSection';
import FeaturesSection from '../components/home/FeaturesSection';
import HowItWorksSection from '../components/home/HowItWorksSection';
import PricingSection from '../components/home/PricingSection';
import ContactSection from '../components/home/ContactSection';
import { useLanguage } from '../contexts/LanguageContext';
export default function HomePage() {
const { t } = useLanguage();
return (
<>
<SEOHead
title="TexPixel - AI Math Formula Recognition | LaTeX, MathML OCR Tool"
description={t.marketing.hero.subtitle}
path="/"
/>
<HeroSection />
<FeaturesSection />
<HowItWorksSection />
<PricingSection />
<ContactSection />
</>
);
}