mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
88 lines
2.9 KiB
TypeScript
88 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import React, { useState, useEffect } from "react";
|
|
import Image from "next/image";
|
|
import {
|
|
Carousel,
|
|
CarouselContent,
|
|
CarouselItem,
|
|
CarouselNext,
|
|
CarouselPrevious,
|
|
} from "@/components/ui/carousel";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import CountUp from "react-countup";
|
|
import { Progress } from "@/components/ui/progress";
|
|
import { Separator } from "@/components/ui/separator";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export default function Invest() {
|
|
const [progress, setProgress] = useState(0);
|
|
useEffect(() => {
|
|
// percent success
|
|
const timer = setTimeout(() => setProgress(66), 500);
|
|
return () => clearTimeout(timer);
|
|
}, []);
|
|
return (
|
|
<div className=" w-[90%] h-[500px]-500 ml-32 mt-12">
|
|
<div>
|
|
<div className="flex">
|
|
<Image src="./logo.svg" alt="logo" width={50} height={50} />
|
|
<h1 className="mt-3 font-bold text-3xl">NVIDIA</h1>
|
|
</div>
|
|
<p className="mt-2"> World's first non-metal sustainable battery</p>
|
|
<div className="flex mt-3">
|
|
{["Technology", "Gaming"].map((tag) => (
|
|
<span
|
|
key={tag}
|
|
className="text-xs rounded-md bg-slate-200 dark:bg-slate-700 p-1 mx-1"
|
|
>
|
|
{tag}
|
|
</span>
|
|
))}
|
|
</div>
|
|
<div className="flex">
|
|
{/* image carousel */}
|
|
<Carousel className="w-[55%] mt-4">
|
|
<CarouselContent className="h-[450px]">
|
|
{Array.from({ length: 5 }).map((_, index) => (
|
|
<CarouselItem>
|
|
<img src="./boiler1.jpg" alt="" className="rounded-lg" />
|
|
</CarouselItem>
|
|
))}
|
|
</CarouselContent>{" "}
|
|
<CarouselPrevious />
|
|
<CarouselNext />
|
|
</Carousel>
|
|
<div className=" w-1/3 mt-4 h-[400px] ml-[8%] ">
|
|
<div className="pl-5">
|
|
<h1 className="font-semibold text-4xl mt-8">
|
|
<CountUp
|
|
start={0}
|
|
end={100000}
|
|
duration={2}
|
|
prefix="$"
|
|
className=""
|
|
/>
|
|
</h1>
|
|
<p className=""> 5% raised of $5M max goal</p>
|
|
<Progress value={progress} className="w-[60%] h-3 mt-3" />
|
|
<h1 className="font-semibold text-4xl mt-8">
|
|
{" "}
|
|
<CountUp start={0} end={1000} duration={2} className="" />
|
|
</h1>
|
|
<p className=""> Investors</p>
|
|
</div>
|
|
<Separator decorative className="mt-3 w-3/4 ml-5" />
|
|
<h1 className="font-semibold text-4xl mt-8 ml-5">
|
|
{" "}
|
|
<CountUp start={0} end={5800} duration={2} className="" /> hours
|
|
</h1>
|
|
<p className="ml-5"> Left to invest</p>
|
|
<Button className="mt-10 ml-[25%]">Invest</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|