import { type NextPage } from "next"; import Head from "next/head"; import Link from "next/link"; import { trpc } from "../utils/trpc"; const Home: NextPage = () => { const hello = trpc.example.hello.useQuery({ text: "from tRPC" }); return ( <> Create T3 App

Create T3 App

This stack uses:

{hello.data ?

{hello.data.greeting}

:

Loading..

}
); }; export default Home; type TechnologyCardProps = { name: string; description: string; documentation: string; }; const TechnologyCard: React.FC = ({ name, description, documentation, }) => { return (

{name}

{description}

Documentation
); };