Initial commit

This commit is contained in:
Arkaprabha Chakraborty
2024-08-08 01:55:38 +05:30
commit 7316ba17a1
30 changed files with 20519 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import React from "react";
import DownloadForm from "./DownloadForm";
const Home = () => {
return (
<div className="max-w-4xl mx-auto">
<h2 className="text-2xl font-bold text-center mt-8">
Download Videos Easily
</h2>
<DownloadForm />
</div>
);
};
export default Home;