baima_home_main/app/products/page.tsx

51 lines
2.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ProductList } from '@/components/products/ProductList'
import { Button } from '@/components/ui/button'
import Link from 'next/link'
import { ArrowRight } from 'lucide-react'
export default function ProductsPage() {
return (
<div className="min-h-screen bg-white pt-24 pb-20">
<div className="container mx-auto px-4 md:px-6">
{/* Page Header */}
<div className="max-w-3xl mx-auto text-center mb-16">
<h1 className="text-4xl md:text-5xl font-bold text-secondary mb-6">
</h1>
<p className="text-lg text-muted-foreground leading-relaxed">
AI
</p>
</div>
{/* Navigation Tabs */}
<div className="sticky top-20 z-40 bg-white/95 backdrop-blur-md py-4 mb-8 border-b border-gray-100 hidden md:block">
<nav className="flex justify-center gap-8">
<a href="#fintech" className="text-sm font-medium text-muted-foreground hover:text-primary transition-colors"></a>
<a href="#ai" className="text-sm font-medium text-muted-foreground hover:text-primary transition-colors"></a>
<a href="#alliance" className="text-sm font-medium text-muted-foreground hover:text-primary transition-colors"></a>
<a href="#infrastructure" className="text-sm font-medium text-muted-foreground hover:text-primary transition-colors"></a>
</nav>
</div>
<ProductList />
{/* CTA */}
<div className="mt-24 text-center bg-accent rounded-2xl p-12">
<h2 className="text-3xl font-bold text-secondary mb-4"></h2>
<p className="text-muted-foreground mb-8 max-w-2xl mx-auto">
</p>
<div className="flex justify-center gap-4">
<Button size="lg" asChild className="bg-primary hover:bg-primary/90 text-white rounded-full px-8">
<Link href="/contact">
<ArrowRight className="ml-2 h-4 w-4" />
</Link>
</Button>
</div>
</div>
</div>
</div>
)
}