From 360fd4be257eaf5ae64c4b75d58cc0030e222d7d Mon Sep 17 00:00:00 2001 From: James Wyndham Date: Thu, 7 Mar 2024 11:18:32 +0800 Subject: [PATCH] bugfix - fastpocket button --- Frontend/app/(public)/about/page.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Frontend/app/(public)/about/page.tsx b/Frontend/app/(public)/about/page.tsx index 013c1ab..7a29007 100644 --- a/Frontend/app/(public)/about/page.tsx +++ b/Frontend/app/(public)/about/page.tsx @@ -2,16 +2,11 @@ import PageHeader from "@/sections/PageHeader"; import BlogCard from "@/components/BlogCard"; import getPostMetadata from "@/utils/getPostMetaData"; import React from "react"; -import Background from "@/components/Utilities/Background"; import Footer from "@/components/Footer"; import Image from "next/image"; +import Link from "next/link"; -export default async function BlogsPage() { - const postMetadata = await getPostMetadata(); - - const postPreviews = postMetadata - .sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime()) - .map((post) => ); +export default async function About() { return (
- +