More Updatesss
This commit is contained in:
@@ -45,7 +45,6 @@ const AccountPage = () => {
|
||||
<br />
|
||||
{userData.medications.map((medication, index) => (
|
||||
<div key={index} className="mb-2 grid grid-cols-3 gap-2">
|
||||
|
||||
<p>{medication.name}</p>
|
||||
<p>{medication.dosage}</p>
|
||||
<p>{medication.frequency}</p>
|
||||
@@ -53,7 +52,7 @@ const AccountPage = () => {
|
||||
))}
|
||||
<div className="mb-4">
|
||||
<Label>Diagnoses:</Label>
|
||||
<p>{userData.diagnoses.join(', ')}</p>
|
||||
<p>{userData.diagnoses ? userData.diagnoses.join(', ') : ''}</p>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
"use client"
|
||||
|
||||
import { Hero } from "@/components/hero";
|
||||
import { Facts } from "@/components/facts";
|
||||
|
||||
import SignupPage from './signup/page'
|
||||
import Link from "next/link";
|
||||
@@ -8,7 +9,10 @@ import Link from "next/link";
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
|
||||
|
||||
<Hero />
|
||||
<Facts />
|
||||
|
||||
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100vh' }}>
|
||||
<h1 style={{ fontSize: 64, marginBottom: 20 }}>Welcome to Hoya</h1>
|
||||
<SignupPage />
|
||||
|
||||
Reference in New Issue
Block a user