Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/app/(main)/events/_components/EventsRoadmap.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
import Image from "next/image";
import { EmptyListPlaceholder } from "@/components/misc/EmptyListPlaceholder";

type EventsRoadmapProps = {
title: string;
image: {
image?: {
src: string;
alt: string;
};
};

export default function EventsRoadmap({ title, image }: EventsRoadmapProps) {
export default function EventsRoadmap({ title }: EventsRoadmapProps) {
return (
<div className="py-20" id="roadmap">
<h2 className="py-10 text-3xl font-bold">{title}</h2>
<Image className="w-full rounded-2xl" src={image.src} alt={image.alt} width="4000" height="3000" />
{/* <Image className="w-full rounded-2xl" src={image.src} alt={image.alt} width="4000" height="3000" /> */}
<EmptyListPlaceholder>Roadmap coming soon for 2026</EmptyListPlaceholder>
</div>
);
}
2 changes: 2 additions & 0 deletions src/app/(payload)/admin/importMap.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { CollectionCards as CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1 } from "@payloadcms/next/rsc";
import { S3ClientUploadHandler as S3ClientUploadHandler_f97aa6c64367fa259c5bc0567239ef24 } from "@payloadcms/storage-s3/client";

export const importMap = {
"@payloadcms/storage-s3/client#S3ClientUploadHandler": S3ClientUploadHandler_f97aa6c64367fa259c5bc0567239ef24,
"@payloadcms/next/rsc#CollectionCards": CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1,
};
2 changes: 1 addition & 1 deletion src/components/layout/navbar/NavigationBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default function NavigationBar({ variant = { color: "light" } }: NavbarPr
</Button>
<Button
variant={{ style: "primary", color: "blue" }}
href="https://docs.google.com/forms/d/e/1FAIpQLSf9p1n1GpuuFxXbhx_7iWDQkDqRpxVDAjUOeyyzYeavC6d48A/viewform?usp=sharing"
href="https://docs.google.com/forms/d/e/1FAIpQLScJbNOt3G583BetdEkQ56o2VJX9VTvD-_X0PdBYpCaucO27Uw/viewform?usp=header"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's make an issue to add ts to payload

className="hidden items-center leading-none md:flex"
newTab
>
Expand Down