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.
This commit is contained in:
mauro-balades
2024-09-04 20:04:22 +02:00
parent 1c8a62d4ec
commit 7457f1411b

View File

@@ -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 (