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;