Skip to content

Commit

Permalink
fix: add more text on homepage to link to the dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed Jan 23, 2025
1 parent 9863495 commit 43548db
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
@tailwind components;
@tailwind utilities;

@layer base {
a {
@apply text-indigo-600;
}
}
22 changes: 22 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,28 @@ export default async function Home() {
</p>
</Link>
</div>
<div>
<p
className="mt-6 animate-fade-up text-center text-gray-500 opacity-0 [text-wrap:balance] md:text-xl"
style={{ animationDelay: '0.25s', animationFillMode: 'forwards' }}
>
Visit{' '}
<Link href={`${process.env.NEXT_PUBLIC_APP_URL}/dashboard`}>
our dashboard
</Link>
,{' '}
<Link href={`${process.env.NEXT_PUBLIC_APP_URL}/dashboard/explore`}>
explore existing models
</Link>{' '}
and run predictions on them or access{' '}
<Link
href={`${process.env.NEXT_PUBLIC_SITE_URL}/docs/category/getting-started`}
>
our documentation
</Link>{' '}
to upload your own model
</p>
</div>
</div>
<div className="my-10 grid w-full max-w-screen-xl animate-fade-up grid-cols-1 gap-5 px-5 md:grid-cols-3 xl:px-0">
{features.map(({ title, description, demo, large }) => (
Expand Down

0 comments on commit 43548db

Please sign in to comment.