diff --git a/src/components/Build.jsx b/src/components/Build.jsx new file mode 100644 index 0000000..6febe1b --- /dev/null +++ b/src/components/Build.jsx @@ -0,0 +1,89 @@ +import { + ArrowPathIcon, + CloudArrowUpIcon, + Cog6ToothIcon, + FingerPrintIcon, + LockClosedIcon, + ServerIcon, + } from '@heroicons/react/20/solid' + + const features = [ + { + name: 'Push to deploy.', + description: 'Lorem ipsum, dolor sit amet consectetur adipisicing elit aute id magna.', + icon: CloudArrowUpIcon, + }, + { + name: 'SSL certificates.', + description: 'Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.', + icon: LockClosedIcon, + }, + { + name: 'Simple queues.', + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus.', + icon: ArrowPathIcon, + }, + { + name: 'Advanced security.', + description: 'Lorem ipsum, dolor sit amet consectetur adipisicing elit aute id magna.', + icon: FingerPrintIcon, + }, + { + name: 'Powerful API.', + description: 'Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.', + icon: Cog6ToothIcon, + }, + { + name: 'Database backups.', + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. ', + icon: ServerIcon, + }, + ] + + export default function Build() { + return ( +
+
+
+

Get Started

+

Build Your Own Verse

+

+ Create and customize your virtual world with powerful tools and resources that make building and managing your digital space easy and intuitive. +

+
+
+
+
+ {/* embed Video */} + + +
+
+
+ {features.map((feature) => ( +
+
+
{' '} +
{feature.description}
+
+ ))} +
+
+
+ ) + } + \ No newline at end of file