mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
Continue typescript conversion 2
This commit is contained in:
24
components/AuthText.tsx
Normal file
24
components/AuthText.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import Image from 'next/image';
|
||||
import authImage from 'public/auth.png';
|
||||
|
||||
const AuthText = (): JSX.Element => (
|
||||
<div className="lg:mt-0 max-w-lg flex flex-col text-xl">
|
||||
<div className="mt-10 mb-3 m-auto">
|
||||
<Image
|
||||
src={authImage}
|
||||
width={authImage.width / 1.5}
|
||||
height={authImage.height / 1.5}
|
||||
alt="A rocketship"
|
||||
/>
|
||||
</div>
|
||||
<h2 className="text-4xl font-title font-semibold text-center">
|
||||
Join SupaNexTail for <span className="text-primary">free</span>!
|
||||
</h2>
|
||||
<p className="mb-5 mt-8 leading-9">
|
||||
Create your website in a few minutes with our boilerplate. You can use the login system, this
|
||||
will allow you to discover the sample dashboard page.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default AuthText;
|
||||
Reference in New Issue
Block a user