diff --git a/src/app/(content)/page.tsx b/src/app/(content)/page.tsx index 974aba7..0b7addc 100644 --- a/src/app/(content)/page.tsx +++ b/src/app/(content)/page.tsx @@ -5,6 +5,7 @@ import { HeroParallax } from "@/components/widgets/Hero"; import { tiaraAssetsPrefix } from "@/lib/utils"; import RegisterNow from "../../components/ui/registernow"; import EventsPage from "./events/page"; +import {Sponsers} from "@components/widgets/GoldSponser" const images = [ { alt: "Image 0", src: `${tiaraAssetsPrefix}/hero/3(1).avif` }, @@ -30,6 +31,7 @@ export default function Home() {
+ diff --git a/src/components/widgets/GoldSponser.tsx b/src/components/widgets/GoldSponser.tsx new file mode 100644 index 0000000..2512581 --- /dev/null +++ b/src/components/widgets/GoldSponser.tsx @@ -0,0 +1,61 @@ +"use client"; +import Image from "next/image"; +import { CardBody, CardContainer, CardItem } from "@/components/ui/3d-card"; +import { tiaraFont } from "@/lib/fonts"; +import { cn, tiaraAssetsPrefix } from "@/lib/utils"; + +const sponsers = [ + `${tiaraAssetsPrefix}/sponsers/ather.jpeg`, + `${tiaraAssetsPrefix}/sponsers/kasharp.jpeg`, + `${tiaraAssetsPrefix}/sponsers/marian.jpeg`, + `${tiaraAssetsPrefix}/sponsers/nidhi_land.jpeg`, + `${tiaraAssetsPrefix}/sponsers/pakruti.jpeg`, + +]; + + + +export function Sponsers() { + return ( +
+
+
+

+ Sponsers +

+
+
+
+
+ {sponsers.map((card, index) => { + return ( + + + + thumbnail + + + + ); + })} +
+
+
+ ); +}