Update page.tsx

Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com>
This commit is contained in:
Ahmad 2024-12-16 18:55:07 -05:00 committed by GitHub
parent 8105c15849
commit 589976eda6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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