Update page.tsx

This commit is contained in:
MacRimi 2025-02-16 12:53:24 +01:00 committed by GitHub
parent 106ff24a44
commit 081958dfb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,7 @@ import fs from "fs"
import path from "path"
import matter from "gray-matter"
import Link from "next/link"
import Footer from "@/components/footer"
const guidesDirectory = path.join(process.cwd(), "..", "guides")
@ -63,6 +64,7 @@ export default function GuidesPage() {
))}
</div>
</div>
<Footer />
</div>
)
}