1
1
import { Metadata } from "next"
2
+ import Image from "next-image-export-optimizer"
2
3
3
4
import { Button } from "@/app/conf/_design-system/button"
4
5
@@ -7,6 +8,8 @@ import { NavbarPlaceholder } from "../../components/navbar"
7
8
import { CalendarIcon } from "../../../_design-system/pixelarticons/calendar-icon"
8
9
import { PinIcon } from "../../../_design-system/pixelarticons/pin-icon"
9
10
11
+ import heroPhoto from "./hero-photo.webp"
12
+
10
13
export const metadata : Metadata = {
11
14
title : "GraphQL Day at FOST" ,
12
15
}
@@ -28,19 +31,34 @@ export default function ResourcesPage() {
28
31
colorScheme = "neutral"
29
32
stripes = {
30
33
< HeroStripes
31
- className = "-scale-x-100 dark:data-[loaded=true]:opacity-80"
34
+ className = "-scale-x-100 [--color-sec-base:181deg_97.8%_36.1%] [--color-sec-dark:181deg_98.3%_23.1%] [--color-sec-light:181deg_74.3%_80.2%] dark:data-[loaded=true]:opacity-80"
32
35
evenClassName = "bg-[linear-gradient(180deg,hsl(var(--color-sec-light))_0%,hsl(319deg_100%_90%_/_0.2)_100%)] dark:bg-[linear-gradient(180deg,hsl(var(--color-sec-dark))_0%,hsl(var(--color-neu-100))_100%)]"
33
36
oddClassName = "bg-[linear-gradient(180deg,hsl(319deg_100%_90%_/_0.2)_0%,hsl(var(--color-sec-base))_100%)] dark:bg-[linear-gradient(180deg,hsl(var(--color-sec-dark))_0%,hsl(var(--color-neu-0))_100%)]"
34
37
/>
35
38
}
36
39
rightContent = { null }
40
+ bottom = {
41
+ < div className = "z-[2]" >
42
+ < Image
43
+ src = { heroPhoto }
44
+ width = { 1920 }
45
+ height = { 560 }
46
+ alt = "a black and white photo of CNIT in La Defense, Paris"
47
+ className = "mx-auto h-[560px] w-[1920px] max-w-full object-cover"
48
+ />
49
+ </ div >
50
+ }
37
51
>
38
52
< HeroDateAndLocation />
39
53
< div className = "flex items-center gap-4 max-md:flex-col" >
40
54
< Button href = { CFP_LINK } className = "md:w-fit" >
41
55
Submit a proposal
42
56
</ Button >
43
- < Button className = "md:w-fit" href = { TICKETS_LINK } variant = "secondary" >
57
+ < Button
58
+ className = "backdrop-blur-xl md:w-fit"
59
+ href = { TICKETS_LINK }
60
+ variant = "secondary"
61
+ >
44
62
Get your tickets
45
63
</ Button >
46
64
</ div >
0 commit comments