diff --git a/public/boiler1.jpg b/public/boiler1.jpg new file mode 100644 index 0000000..73b51d7 Binary files /dev/null and b/public/boiler1.jpg differ diff --git a/src/app/invest/page.tsx b/src/app/invest/page.tsx index 75779f0..0630e06 100644 --- a/src/app/invest/page.tsx +++ b/src/app/invest/page.tsx @@ -3,16 +3,17 @@ import React from "react"; import Image from "next/image"; import { - Carousel, - CarouselContent, - CarouselItem, - CarouselNext, - CarouselPrevious, - } from "@/components/ui/carousel" + Carousel, + CarouselContent, + CarouselItem, + CarouselNext, + CarouselPrevious, +} from "@/components/ui/carousel"; +import { Card, CardContent } from "@/components/ui/card"; export default function Invest() { return ( -
+
logo @@ -29,6 +30,21 @@ export default function Invest() { ))}
+
+ {/* image carousel */} + + + {Array.from({ length: 5 }).map((_, index) => ( + + + + ))} + {" "} + + + +
+
);