Skip to content

Commit 7acbd09

Browse files
committed
Format conference kit changes
1 parent 6303425 commit 7acbd09

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

scripts/render-conference-kit-banners.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,14 @@ async function main() {
7272

7373
const zipPath = path.join(PUBLIC_DIR, "banners.zip")
7474
await rm(zipPath, { force: true })
75-
await exec(
76-
"zip",
77-
["-j", zipPath, ...BANNERS.map(b => path.join(tmpDir, `${b.slug}.png`))],
75+
await exec("zip", [
76+
"-j",
77+
zipPath,
78+
...BANNERS.map(b => path.join(tmpDir, `${b.slug}.png`)),
79+
])
80+
console.log(
81+
`[render-banners] wrote ${path.relative(process.cwd(), zipPath)}`,
7882
)
79-
console.log(`[render-banners] wrote ${path.relative(process.cwd(), zipPath)}`)
8083
} finally {
8184
await rm(tmpDir, { recursive: true, force: true })
8285
}

src/app/conf/conference-kit/_components/amsterdam-banner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function AmsterdamBanner() {
6262
fill
6363
sizes="250px"
6464
placeholder="empty"
65-
className="hue-rotate-[-5deg] object-cover opacity-80"
65+
className="object-cover opacity-80 hue-rotate-[-5deg]"
6666
/>
6767
</div>
6868
<div className="flex flex-col gap-2 border-l border-white/10 p-[18px_18px_16px]">

src/app/conf/conference-kit/_components/language-banner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function LanguageBanner() {
5959
<MobileDiagram step={1} className="block overflow-visible" />
6060
<div className="pointer-events-none absolute inset-0 flex items-center justify-center">
6161
<div
62-
className={`${wiresStyles.highlightsQuery} py-3 backdrop-blur-xl bg-[#0A0B08]/30 border border-sec-base/25`}
62+
className={`${wiresStyles.highlightsQuery} border border-sec-base/25 bg-[#0A0B08]/30 py-3 backdrop-blur-xl`}
6363
style={{ ["--highlight-opacity" as string]: 1 }}
6464
>
6565
<CityQuerySnippet />

src/components/code-blocks/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ export const QueryHeroFriends = () => (
6464
export const ResponseHeroFriends = () => (
6565
<_ResponseHeroFriends components={components} />
6666
)
67-

0 commit comments

Comments
 (0)