mxivideo/src/components/WelcomeSection.tsx

34 lines
869 B
TypeScript
Raw 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 React from 'react'
import { Link } from 'react-router-dom'
import { Plus } from 'lucide-react'
const WelcomeSection: React.FC = () => {
return (
<div className="text-center py-8">
<h1 className="text-4xl font-bold text-secondary-900 mb-4">
使 MixVideo V2
</h1>
<p className="text-lg text-secondary-600 mb-8">
</p>
<div className="flex items-center justify-center space-x-4">
<Link
to="/projects"
className="btn-primary flex items-center"
>
<Plus size={20} className="mr-2" />
</Link>
<Link
to="/templates"
className="btn-secondary"
>
</Link>
</div>
</div>
)
}
export default WelcomeSection