Skip to content

Commit 40f92b9

Browse files
authored
fix: remove console.log (#222)
1 parent 9e012df commit 40f92b9

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

apps/web/app/_components/dateandcontest/Timeline.tsx

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ type TimelineProps = {
2626
}
2727

2828
export default function Timeline({ data }: TimelineProps) {
29-
console.log(data)
3029
return (
3130
<div className="gap-y-25 2xl:gap-y-50 flex flex-col items-center justify-center">
3231
{data.map((section, sectionIndex) => (
@@ -77,13 +76,13 @@ export default function Timeline({ data }: TimelineProps) {
7776
style={{
7877
background: `
7978
radial-gradient(
80-
66.31% 84.48% at 52.63% 121.84%,
81-
${content.themeColor} 0%,
79+
66.31% 84.48% at 52.63% 121.84%,
80+
${content.themeColor} 0%,
8281
rgba(2, 6, 3, 0) 50%
8382
),
8483
linear-gradient(
85-
106.52deg,
86-
rgba(255, 204, 247, 0.09) 0.48%,
84+
106.52deg,
85+
rgba(255, 204, 247, 0.09) 0.48%,
8786
rgba(159, 131, 220, 0.09) 0.08%
8887
)
8988
`,
@@ -94,13 +93,13 @@ export default function Timeline({ data }: TimelineProps) {
9493
style={{
9594
background: `
9695
radial-gradient(
97-
66.31% 84.48% at 52.63% 121.84%,
98-
${content.themeColor} 0%,
96+
66.31% 84.48% at 52.63% 121.84%,
97+
${content.themeColor} 0%,
9998
rgba(2, 6, 3, 0) 90%
10099
),
101100
linear-gradient(
102-
106.52deg,
103-
rgba(255, 204, 247, 0.09) -2.48%,
101+
106.52deg,
102+
rgba(255, 204, 247, 0.09) -2.48%,
104103
rgba(159, 131, 220, 0.09) 29.08%
105104
)
106105
`,
@@ -140,13 +139,13 @@ export default function Timeline({ data }: TimelineProps) {
140139
color: content.card.textColor,
141140
background: `
142141
radial-gradient(
143-
66.31% 84.48% at 52.63% 121.84%,
144-
${content.themeColor} 0%,
142+
66.31% 84.48% at 52.63% 121.84%,
143+
${content.themeColor} 0%,
145144
rgba(2, 6, 3, 0) 70%
146145
),
147146
linear-gradient(
148-
106.52deg,
149-
rgba(255, 204, 247, 0.09) -2.48%,
147+
106.52deg,
148+
rgba(255, 204, 247, 0.09) -2.48%,
150149
rgba(159, 131, 220, 0.09) 29.08%
151150
)
152151
`,

0 commit comments

Comments
 (0)