- 6 sections: Hero, About, Experience, Skills, Projects, Contact - MagicUI: Globe, Particles, Meteors, AnimatedList, IconCloud, BentoGrid - Dark mode support, scroll-triggered animations - Static export ready for deployment
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
"use client"
|
||
|
||
import { ShinyButton } from "@/components/ui/shiny-button"
|
||
import { SectionWrapper } from "@/components/section-wrapper"
|
||
|
||
export function Contact() {
|
||
return (
|
||
<SectionWrapper id="contact" className="py-24">
|
||
<div className="mx-auto max-w-2xl px-6 text-center">
|
||
<h2 className="mb-4 text-3xl font-bold tracking-tight sm:text-4xl">
|
||
一起合作吧
|
||
</h2>
|
||
<p className="mb-8 text-muted-foreground">
|
||
正在寻找能把 AI 深度接入真实业务、并以结果衡量价值的岗位或团队。随时联系我!
|
||
</p>
|
||
|
||
<div className="flex flex-wrap items-center justify-center gap-4">
|
||
<a href="mailto:liukersun@gmail.com">
|
||
<ShinyButton>发送邮件</ShinyButton>
|
||
</a>
|
||
<a href="https://github.com/LiukerSun" target="_blank" rel="noopener noreferrer">
|
||
<ShinyButton>GitHub</ShinyButton>
|
||
</a>
|
||
<a
|
||
href="https://t.me/DrJhaha"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
<ShinyButton>Telegram</ShinyButton>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 页脚 */}
|
||
<footer className="mt-24 border-t border-border pt-8 text-center text-sm text-muted-foreground">
|
||
<p>© 2026 Evan Sun. 保留所有权利。</p>
|
||
</footer>
|
||
</SectionWrapper>
|
||
)
|
||
}
|