Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GraphQLConfCard to link to YT #1736

Merged
merged 8 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions .changeset/great-mirrors-complain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@theguild/components": patch
---

Update GraphQLConfCard to link to YT
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,23 @@ export interface GraphQLConfCardProps {
}
export function GraphQLConfCard({ image }: GraphQLConfCardProps) {
return (
<NavigationMenuLink href="https://graphql.org/conf/2024/" className="group w-[358px]">
<NavigationMenuLink
href="https://www.youtube.com/playlist?list=PL43V96KpNj7OMvmfL0WFKP6LpoboM8Hde"
className="group w-[358px]"
>
<Image alt="" {...image} width={358} height={200} />
<strong className="mt-6 block text-xl font-medium leading-7 text-green-1000 dark:text-neutral-100">
GraphQLConf 2024
</strong>
<p className="mt-4 text-sm font-medium leading-5 text-green-800 dark:text-neutral-200">
September 10-12 | San Fransico CA
September 10-12 | San Francisco CA
</p>
<p className="mt-2 text-sm font-normal leading-5 text-green-800 dark:text-neutral-200">
The official GraphQL conference hosted by GraphQL Foundation.
</p>
<span className="-mx-2 mt-4 flex items-center gap-2 rounded-lg p-2 font-medium text-green-800 transition-colors group-hover:text-green-1000 dark:text-neutral-200 dark:group-hover:text-neutral-100">
<span>Meet us at GraphQLConf 2024</span> <ArrowIcon />
<span className="mt-6 flex items-center gap-2 rounded-lg font-medium text-green-800 transition-colors group-hover:text-green-1000 dark:text-neutral-200 dark:group-hover:text-neutral-100">
Watch The Guild at GraphQLConf 2024
<ArrowIcon />
</span>
</NavigationMenuLink>
);
Expand Down
Loading