Skip to content

Commit

Permalink
fix: word style
Browse files Browse the repository at this point in the history
  • Loading branch information
ThianHooi committed Jul 28, 2024
1 parent c45c2f3 commit dbc0f7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
3 changes: 2 additions & 1 deletion app/modules/dashboard/AboutDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ const AboutDialog = () => {
href="https://www.youtube.com/c/iherng"
target="_blank"
rel="noopener noreferrer"
className="text-blue-500 underline"
>
iherng
</a>
</a>{' '}
and use Google's Gemini AI (specifically the{' '}
<code>gemini-1.5-pro</code> model) to generate summaries of each
video. Our goal is to provide quick insights into video content,
Expand Down
18 changes: 4 additions & 14 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,7 @@ export default function Index() {
<div className="flex-col md:flex">
<div className="border-b">
<div className="flex h-16 items-center px-4 justify-between w-full">
<h2 className="text-3xl font-bold tracking-tight">
Videos List
<span className="text-base font-normal text-gray-700 italic">
{' '}
from{' '}
<a
href="https://www.youtube.com/c/iherng"
target="_blank"
rel="noopener noreferrer"
>
iherng's YouTube Channel
</a>
</span>
</h2>
<h1 className="text-3xl font-bold tracking-tight">Videos</h1>
<div className="flex space-x-1 md:space-x-4">
<AboutDialog />
<DisclaimerDialog />
Expand All @@ -46,6 +33,9 @@ export default function Index() {
</div>

<div className="flex-1 space-y-4 p-8 pt-6">
<h2 className="text-sm font-medium leading-none">
List of property review videos from iherng
</h2>
<DataTable
columns={columns}
data={videos as Video[]}
Expand Down

0 comments on commit dbc0f7c

Please sign in to comment.