diff --git a/Website/app/Features.js b/Website/app/Features.js new file mode 100644 index 000000000..453f37a50 --- /dev/null +++ b/Website/app/Features.js @@ -0,0 +1,60 @@ +import React from "react"; +function Features() { + const features = [ + { + title: "It's Free and Open-Source", + description: + "Drifty is both free and open-source, so, you can bring new features that you wish to have 🎉", + icon: "fa-brands fa-osi", + color: "text-lime-600", + }, + { + title: "Faster Downloading of files", + description: + "Drifty supports parallel downloading using multiple threads", + icon: "fa fa-download", + color: "text-sky-400", + }, + { + title: "Support for downloading videos from YouTube, Instagram, etc.", + description: + "Drifty allows downloading videos from popular platforms like YouTube and Instagram with ease.", + icon: "fa fa-youtube-play", + color: "text-red-600", + }, + { + title: "Available both in GUI and CLI mode", + description: + "Drifty has both CLI and GUI mode. So, it can be used anywhere as CLI or as GUI according to the requirements of the user.", + icon: "fa fa-desktop", + color: "text-gray-700", + }, + ]; + return ( +
+

+ Features +

+
+ {features.map((feature, index) => ( +
+ +

{feature.title}

+

{feature.description}

+
+ ))} +
+
+ ....and many more! +
+
+ ); +} +export default Features; diff --git a/Website/app/page.js b/Website/app/page.js index 8ad553dca..d923c6420 100644 --- a/Website/app/page.js +++ b/Website/app/page.js @@ -1,27 +1,32 @@ -import Header from "./Header" -import MainSection from "./MainSection" +import Header from "./Header"; +import MainSection from "./MainSection"; import Contribute from "./Contribute"; -import Demo from "./Demo" +import Demo from "./Demo"; import Footer from "./Footer"; +import Features from "./Features"; export default async function Home() { - const data = await getData() - return ( - <> -
- - - -