Skip to content

Commit b8d5c0e

Browse files
Fixed the TimelineObserver import
1 parent 5579bea commit b8d5c0e

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

package-lock.json

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/events/page.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
'use client'
2-
import React, {useEffect, useRef, useState} from 'react';
1+
"use client"
32
import Events from "@/components/EventsTimeline";
43

54
const EventsTimeline = () => {

src/components/EventsTimeline.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
"use client"
12
import React, { useEffect } from 'react';
23
import VerticalTimeline from './VerticalTimeline';
34
import events from '../app/events/events.json'
45

56
const EventsTimeline = () => {
67
useEffect(() => {
7-
if (window.innerWidth >= 768) {
8-
window.scrollBy(0, 70);
8+
if (window?.innerWidth >= 768) {
9+
window?.scrollBy(0, 70);
910
}
1011
}, []);
1112
return (

src/components/VerticalTimeline.jsx

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import React, { useEffect, useRef, useState } from "react";
2+
import dynamic from "next/dynamic";
23
import AnimatedTimelineItem from "./AnimatedTimelineItem";
34
import Image from "next/image";
45
import blurCyanImage from "@/images/blur-cyan.png";
5-
import TimelineObserver from "react-timeline-animation";
6+
7+
const TimelineObserver = dynamic(() => import("react-timeline-animation"), { ssr: false });
68

79
const Timeline = ({ setObserver, customHeight }) => {
810
const timelineRef = useRef(null);
@@ -16,7 +18,6 @@ const Timeline = ({ setObserver, customHeight }) => {
1618
id="timeline"
1719
ref={timelineRef}
1820
style={{ height: customHeight }}
19-
2021
className="absolute left-3 xs:left-0 md:left-1/2 py-8 top-0 w-1 transform md:-translate-x-1/2 md:block hidden transition-all duration-100 ease-in-out"
2122
/>
2223
);
@@ -66,10 +67,7 @@ const VerticalTimeline = ({ events }) => {
6667

6768
<div className="relative z-10">
6869
{events.map((event, index) => (
69-
<div
70-
key={index}
71-
className="timeline-item"
72-
>
70+
<div key={index} className="timeline-item">
7371
<AnimatedTimelineItem
7472
date={event.date}
7573
title={event.title}

0 commit comments

Comments
 (0)