From 67cb3d9dd96260502ef933ebc3dc4dc6f5f32200 Mon Sep 17 00:00:00 2001 From: aJesusCode Date: Wed, 25 Oct 2023 14:00:40 +0200 Subject: [PATCH] fix: added guide button to main page --- src/app/components/SpotConditionsWeek.tsx | 2 -- src/app/info/page.tsx | 4 +--- src/app/page.tsx | 6 ++++++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/components/SpotConditionsWeek.tsx b/src/app/components/SpotConditionsWeek.tsx index e17e145..5a0bc73 100644 --- a/src/app/components/SpotConditionsWeek.tsx +++ b/src/app/components/SpotConditionsWeek.tsx @@ -28,8 +28,6 @@ export default function SpotConditionsWeek({ return locTime.setZone("Europe/Paris").toFormat("ccc d HH:mm"); }); - //TODO make side column sticky - return (
diff --git a/src/app/info/page.tsx b/src/app/info/page.tsx index 1f5e253..133e032 100644 --- a/src/app/info/page.tsx +++ b/src/app/info/page.tsx @@ -3,7 +3,6 @@ import pintxosData from "@/app/constants/pintxosData"; import Image from "next/image"; import Link from "next/link"; -//TODO Add more description, refactor ui const Info = () => { return (
@@ -24,7 +23,6 @@ const Info = () => { brand color. You can learn them below.

- {/* Grid for list items */}
{pintxosData.map((item, index) => (
{
))}
-
+
+ or + + + ); }