Skip to content

Commit

Permalink
banner on the Learn page
Browse files Browse the repository at this point in the history
  • Loading branch information
DrShpongle authored and kodiakhq[bot] committed Mar 7, 2024
1 parent c9ba76f commit 0f99df3
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/epic-react/src/components/app/layout.tsx
Expand Up @@ -82,7 +82,7 @@ const Layout: FunctionComponent<React.PropsWithChildren<LayoutProps>> = ({
{withNavigation && <Navigation {...navigationProps} />}
<div
className={twMerge(
'flex h-full min-h-[calc(100svh-61px)] flex-grow flex-col',
'mt-[61px] flex min-h-[calc(100svh-61px)] flex-grow flex-col',
className,
)}
>
Expand Down
45 changes: 44 additions & 1 deletion apps/epic-react/src/pages/learn.tsx
Expand Up @@ -147,7 +147,50 @@ const Learn: React.FC<{workshops: any[]; bonuses: any[]}> = ({
},
}}
>
<Header title={title} />
<section>
<Image
src="/assets/flying-rocket-xl@2x.webp"
alt=""
width={1600}
height={273}
className="hidden w-full dark:xl:block"
/>
<Image
src="/assets/flying-rocket-light-xl@2x.webp"
alt=""
width={1600}
height={273}
className="hidden w-full xl:block dark:xl:hidden"
/>
<Image
src="/assets/flying-rocket@2x.webp"
alt=""
width={1600}
height={273}
className="hidden w-full dark:md:block dark:xl:hidden"
/>
<Image
src="/assets/flying-rocket-light@2x.webp"
alt=""
width={1600}
height={273}
className="hidden w-full md:block dark:md:hidden xl:hidden"
/>
<Image
src="/assets/flying-rocket-sm@2x.webp"
alt=""
width={1600}
height={273}
className="hidden w-full dark:block dark:md:hidden"
/>
<Image
src="/assets/flying-rocket-light-sm@2x.webp"
alt=""
width={1600}
height={273}
className="block w-full dark:hidden md:hidden"
/>
</section>
<main className="mx-auto w-full max-w-screen-lg px-5">
<h2 className="text-center text-5xl">Learn Page</h2>
<ul className="space-y-6">
Expand Down

0 comments on commit 0f99df3

Please sign in to comment.