mirror of
https://github.com/arkorty/DownLink.git
synced 2026-03-17 16:51:45 +00:00
38 lines
942 B
JavaScript
38 lines
942 B
JavaScript
"use client";
|
|
|
|
import React from "react";
|
|
import DownloadForm from "./DownloadForm";
|
|
import { TypeAnimation } from "react-type-animation";
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div className="relative z-10 sm: mt-48 lg:mt-72">
|
|
<div className="max-w-4xl mx-auto text-center">
|
|
<h1 className="text-white mb-4 text-4xl sm:text-5xl lg:text-7xl font-extrabold">
|
|
<TypeAnimation
|
|
sequence={[
|
|
"From YouTube!",
|
|
800,
|
|
"And Instagram!",
|
|
800,
|
|
"Download Now!",
|
|
800,
|
|
"HD Quality!",
|
|
800,
|
|
"DownLink!",
|
|
800,
|
|
]}
|
|
wrapper="span"
|
|
speed={30}
|
|
repeat={Infinity}
|
|
className="text-transparent bg-clip-text bg-white bg-opacity-80"
|
|
/>
|
|
</h1>
|
|
<DownloadForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|