feat(web): 恢复 LandingPage 页脚(FooterSection),复用 App 的 Footer 文案与样式

This commit is contained in:
Ember
2025-11-02 01:42:30 +08:00
parent 200c64dea9
commit 6e35e96b6c
2 changed files with 41 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import HowItWorksSection from '../components/landing/HowItWorksSection'
import CommunitySection from '../components/landing/CommunitySection'
import AnimatedSection from '../components/landing/AnimatedSection'
import LoginModal from '../components/landing/LoginModal'
import FooterSection from '../components/landing/FooterSection'
export function LandingPage() {
const [showLoginModal, setShowLoginModal] = useState(false)
@@ -45,6 +46,7 @@ export function LandingPage() {
</AnimatedSection>
{showLoginModal && <LoginModal onClose={() => setShowLoginModal(false)} />}
<FooterSection />
</div>
)
}