From 589976eda6e83db00ea0c1c701c009c6e5942311 Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:55:07 -0500 Subject: [PATCH] Update page.tsx Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com> --- app/(main)/page.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/(main)/page.tsx b/app/(main)/page.tsx index 035d8f4..fa9d594 100644 --- a/app/(main)/page.tsx +++ b/app/(main)/page.tsx @@ -2,7 +2,6 @@ import { Medal } from 'lucide-react'; import localFont from 'next/font/local'; import { Poppins } from 'next/font/google'; import Link from 'next/link'; -import { GetStaticProps } from 'next'; import { cn } from '@/lib/utils'; import { Button } from '@/components/ui/button'; @@ -51,11 +50,4 @@ const MarketingPage = () => { ); }; -export const getStaticProps: GetStaticProps = async () => { - return { - props: {}, - revalidate: 60, - }; -}; - export default MarketingPage;