From be0382c55fceecfb62edc44587dc13d0ca22288e Mon Sep 17 00:00:00 2001 From: aJesusCode Date: Tue, 17 Oct 2023 22:01:48 +0200 Subject: [PATCH] added button to info page --- src/app/info/page.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/app/info/page.tsx b/src/app/info/page.tsx index 09bcee8..1f5e253 100644 --- a/src/app/info/page.tsx +++ b/src/app/info/page.tsx @@ -1,6 +1,7 @@ import React from "react"; -import pintxosData from "@/app/constants/pintxosData"; // Adjust the import path as needed +import pintxosData from "@/app/constants/pintxosData"; import Image from "next/image"; +import Link from "next/link"; //TODO Add more description, refactor ui const Info = () => { @@ -54,6 +55,13 @@ const Info = () => { ))} +
+ + + +
); };