Skip to content

Commit 844b7f5

Browse files
committed
fix: update document title in Conferences component and adjust margin in DisplayConferences
1 parent 33582f5 commit 844b7f5

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/features/conferences/Conferences.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export function Conferences() {
99
const [conferences, setConferences] = useState<HTConference[]>([]);
1010

1111
useEffect(() => {
12+
document.title = "Conferences · Hacker Tracker";
1213
(async () => setConferences(await getConferences(500)))();
1314
}, []);
1415

src/features/conferences/DisplayConferences.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export function DisplayConferences({
7070
}, [conferences]);
7171

7272
return (
73-
<div className="space-y-8">
73+
<div className="space-y-8 my-10">
7474
{/* Upcoming */}
7575
<section id="upcoming" className="space-y-4">
7676
<h2 className="text-lg font-semibold text-neutral-200">

src/features/schedule/EventsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default function EventsList({
152152
</div>
153153

154154
{/* Sticky day tabs */}
155-
<div className="sticky top-14 z-30 flex flex-wrap justify-center gap-2 border-b border-gray-700 bg-gray-950/80 py-2 backdrop-blur">
155+
<div className="sticky top-14 z-30 flex flex-wrap justify-center gap-2 border-b border-gray-700 bg-gray-950 py-2 backdrop-blur">
156156
{days.map(({ day }) => {
157157
const active = activeDays.includes(day);
158158
return (

0 commit comments

Comments
 (0)