import Image from 'next/image' import Link from 'next/link' import { AnchorHTMLAttributes, FC } from 'react' import { cn } from '@/utils/cn' import githubIcon from 'public/icons/github-button.svg' import telegramIcon from 'public/icons/telegram-button.svg' import vercelIcon from 'public/icons/vercel-button.svg' import inkathonLogo from 'public/images/inkathon-logo.png' interface StyledIconLinkProps extends AnchorHTMLAttributes { href: string className?: string } const StyledIconLink: React.FC = ({ className, children, ...rest }) => ( {children} ) export const HomePageTitle: FC = () => { const title = 'ink!athon' const desc = 'Full-Stack DApp Boilerplate for ink! Smart Contracts' const githubHref = 'https://github.com/scio-labs/inkathon' const deployHref = 'https://github.com/scio-labs/inkathon#deployment-' const telegramHref = 'https://t.me/inkathon' return ( <>
{/* Logo & Title */} ink!athon Logo

{title}

{/* Tagline & Lincks */}

{desc}

Built by{' '} Dennis Zoma {' '} &{' '} Scio Labs . Supported by{' '} Aleph Zero .

{/* Github & Vercel Buttons */}
Github Repository Deploy with Vercel Telegram Group
) }