File size: 405 Bytes
5285b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { MetaFunction } from "@remix-run/node"
import { QA } from "~/components/qa"

export const meta: MetaFunction = () => {
  return [
    { title: "Govsearch" },
    {
      name: "description",
      content:
        "Instead of using a chatbot approach like Govbot, we tried to solve the problem with a search-based approach.",
    },
  ]
}

export default function Index() {
  return <QA />
}