FileConversor / app / page.tsx
page.tsx
Raw
// imports
import Dropzone from "@/components/dropzone";

export default function Home() {
  return (
    <div className="space-y-16 pb-8">
      {/* Title + Desc */}
      <div className="space-y-6">
        <h1 className="text-3xl md:text-5xl font-medium text-center">
          Free Unlimited File Converter
        </h1>
        <p className="text-gray-400 text-md md:text-lg text-center md:px-24 xl:px-44 2xl:px-52">
          Experience limitless possibilities with ConverMax  your go-to online
          platform for free and unrestricted multimedia conversion. Seamlessly
          convert images, audio, and videos without any hassle. Begin your
          conversion journey today and take your content to new heights like
          never before!
        </p>
      </div>

      {/* Upload Box */}
      <Dropzone />
    </div>
  );
}