← back to Grant

app/landing/page.tsx

30 lines

import type { Metadata } from 'next';
import Landing from '@/components/landing/Landing';

export const metadata: Metadata = {
  title: 'Grant — One fit-scored feed for every funding source',
  description:
    'Federal, foundation, corporate, and local grants unified into a single feed and ranked by fit against your nonprofit mission. Stop tab-hopping between siloed databases.',
  alternates: {
    canonical: 'https://grant.agentabrams.com/',
  },
  openGraph: {
    type: 'website',
    siteName: 'Grant',
    title: 'Grant — One fit-scored feed for every funding source',
    description:
      'Federal, foundation, corporate, and local grants unified into a single feed and ranked by fit against your nonprofit mission. Stop tab-hopping between siloed databases.',
    url: 'https://grant.agentabrams.com/',
  },
  twitter: {
    card: 'summary_large_image',
    title: 'Grant — One fit-scored feed for every funding source',
    description:
      'Federal, foundation, corporate, and local grants unified into a single feed and ranked by fit against your nonprofit mission.',
  },
};

export default function LandingPage() {
  return <Landing />;
}