📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 index.tsx · 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22import { createFileRoute, Link } from '@tanstack/react-router'
import AuditDashboard from '../components/AuditDashboard';
import Footer from '../components/Footer';

export const Route = createFileRoute('/')({
  component: RouteComponent,
})

function RouteComponent() {
  return (
    <>
      <main>
        <h1>Audits</h1>
        <section>
          <h2>Get Started</h2>
          <Link to="/audits/new">Build Audit</Link>
        </section>
      </main>
    </>
  )
}