Package Update

This commit is contained in:
Sir Blob
2025-01-25 20:49:38 -05:00
parent fe8e1faed8
commit a5886f3da5
3 changed files with 13 additions and 15 deletions

View File

@@ -25,7 +25,7 @@
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^2.28.0",
"date-fns": "^2.30.0",
"dotenv": "^16.4.7",
"formidable": "^3.5.2",
"hoyahax-2025": "file:",
@@ -38,7 +38,7 @@
"openai": "^4.80.1",
"openai-whisper": "^1.0.2",
"react": "^19.0.0",
"react-day-picker": "^9.5.0",
"react-day-picker": "^8.10.1",
"react-dom": "^19.0.0",
"recharts": "^2.15.0",
"svix": "^1.45.1",

View File

@@ -3,7 +3,6 @@
import { Hero } from "@/components/hero";
import { Facts } from "@/components/facts";
import SignupPage from './login/page'
import Link from "next/link";
export default function Home() {
@@ -14,8 +13,6 @@ export default function Home() {
<Facts />
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100vh' }}>
<h1 style={{ fontSize: 64, marginBottom: 20 }}>Welcome to Hoya</h1>
<SignupPage />
<Link href="/transcribe">
<button>Go to Transcribe Page</button>
</Link>

View File

@@ -1,19 +1,20 @@
"use client"
import { Card, CardContent } from "./ui/card"
export function Facts() {
return (
<section className="mx-auto my-auto bg-white dark:bg-gray-900">
<Card>
<CardContent>
<h2>
OUR MISSION
</h2>
<div className="grid max-w-screen-xl px-4 py-8 mx-auto lg:gap-8 xl:gap-0 lg:py-16 lg:grid-cols-12">
<div className="mr-auto place-self-center lg:col-span-7">
<h1 className=" max-w-2xl mb-4 text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl dark:text-white">
Our Mission
</h1>
<p className="float-right max-w-2xl mb-6 font-light text-gray-500 lg:mb-8 md:text-lg lg:text-xl dark:text-gray-400">
At PostCare we want to ensure the health of those throughout the world.
Our goal is to make sure that our services can ensure clarity and accessibility
<center>As well as a smooth experience</center>
</CardContent>
</Card>
</p>
</div>
</div>
</section>
)
}