baima_home_main/app/contact/page.tsx

110 lines
4.9 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 { Button } from '@/components/ui/button'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
import { MapPin, UserPlus, Store, ArrowRight, MessageCircle, ScanQrCode } from 'lucide-react'
export default function ContactPage() {
return (
<div className="pt-24 pb-20 bg-white">
{/* Header */}
<section className="container mx-auto px-4 md:px-6 mb-16 text-center">
<h1 className="text-4xl font-bold text-secondary mb-4"></h1>
<p className="text-lg text-muted-foreground max-w-2xl mx-auto">
</p>
</section>
<div className="container mx-auto px-4 md:px-6">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12">
{/* Left: Partner Benefits & Info */}
<div className="space-y-8">
{/* Partner Benefits */}
<Card className="border-0 shadow-lg bg-accent">
<CardHeader>
<CardTitle className="text-xl flex items-center gap-2">
<UserPlus className="w-5 h-5 text-primary" />
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex gap-4">
<div className="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center shrink-0">
<Store className="w-5 h-5 text-primary" />
</div>
<div>
<h3 className="font-semibold"></h3>
<p className="text-sm text-muted-foreground"></p>
</div>
</div>
<div className="flex gap-4">
<div className="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center shrink-0">
<ArrowRight className="w-5 h-5 text-primary" />
</div>
<div>
<h3 className="font-semibold"></h3>
<p className="text-sm text-muted-foreground"></p>
</div>
</div>
</CardContent>
</Card>
{/* Contact Info */}
<div className="space-y-6">
<h2 className="text-2xl font-bold text-secondary"></h2>
<div className="flex items-center gap-4">
<div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
<MapPin className="w-5 h-5 text-primary" />
</div>
<div>
<p className="text-sm text-muted-foreground"></p>
<p className="font-semibold text-lg"></p>
</div>
</div>
</div>
</div>
<div>
<Card className="border-0 shadow-lg">
<CardHeader>
<CardTitle className="flex items-center gap-2">
<MessageCircle className="w-5 h-5 text-primary" />
</CardTitle>
</CardHeader>
<CardContent className="text-center">
<div className="flex flex-col items-center space-y-6">
<div className="relative">
<img
src="/baima-qrcode.png"
alt="企业微信客服二维码"
className="w-64 h-64 object-contain rounded-2xl shadow-2xl border-4 border-primary/20"
/>
<div className="absolute -bottom-2 -right-2 w-12 h-12 bg-primary rounded-full flex items-center justify-center shadow-lg">
<ScanQrCode className="w-6 h-6 text-white" />
</div>
</div>
<div className="space-y-3">
<h3 className="text-xl font-bold text-gray-900">
</h3>
<p className="text-muted-foreground max-w-md">
</p>
</div>
<div className="flex items-center gap-2 text-sm text-primary font-medium">
<div className="w-2 h-2 bg-primary rounded-full animate-pulse" />
线
</div>
</div>
</CardContent>
</Card>
</div>
</div>
</div>
</div>
)
}