import { Medal } from 'lucide-react'; import localFont from 'next/font/local'; import { Poppins } from 'next/font/google'; import Link from 'next/link'; import { cn } from '@/lib/utils'; import { Button } from '@/components/ui/button'; const headingFont = localFont({ src: '../../public/fonts/font.woff2' }); const textFont = Poppins({ subsets: ['latin'], weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }); const MarketingPage = () => { return (
No 1 task management app

Tasko helps teams move

Work forward
Collaborate, manage projects, and reach new productivity peaks. From high rises to the home office, the way your team works is unique - accomplish it all with Tasko.
); }; export default MarketingPage;