From 7457f1411bf91196feb6f0aba7ed6e230bd2c1f4 Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Wed, 4 Sep 2024 20:04:22 +0200 Subject: [PATCH] feat: Update import path for markdown.css in about/page.tsx The import path for the markdown.css file in the about/page.tsx file was updated to '../privacy-policy/markdown.css'. This change ensures that the correct CSS file is being imported and applied to the About page, improving the styling and consistency of the page. --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 83630be..cdabcd8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,7 +4,7 @@ import { Navigation } from "@/components/navigation"; import { releaseNoteIsAlpha, releaseNotes } from "@/lib/release-notes"; import Link from "next/link"; import Markdown from 'react-markdown' -import './markdown.css'; +import '../privacy-policy/markdown.css'; export default function PrivacyPolicy() { return (